h.d.ts 177 B

123456789
  1. import types = require('./types');
  2. declare function h(
  3. tag: string,
  4. attrs?: types.PlainObj<any>,
  5. ...child: Array<string | HTMLElement>
  6. ): HTMLElement;
  7. export = h;