10 lines
218 B
TypeScript
10 lines
218 B
TypeScript
export {h} from './lib/html.js'
|
|
/**
|
|
* Acceptable child value
|
|
*/
|
|
export type Child = import('./lib/index.js').Child
|
|
/**
|
|
* Acceptable properties value.
|
|
*/
|
|
export type Properties = import('./lib/index.js').Properties
|