10 lines
177 B
TypeScript
10 lines
177 B
TypeScript
|
import types = require('./types');
|
||
|
|
||
|
declare function h(
|
||
|
tag: string,
|
||
|
attrs?: types.PlainObj<any>,
|
||
|
...child: Array<string | HTMLElement>
|
||
|
): HTMLElement;
|
||
|
|
||
|
export = h;
|