11 lines
330 B
JavaScript
11 lines
330 B
JavaScript
/**
|
|
* @typedef {import('./core.js').HChild} Child
|
|
* Acceptable child value.
|
|
* @typedef {import('./core.js').HProperties} Properties
|
|
* Acceptable value for element properties.
|
|
* @typedef {import('./core.js').HResult} Result
|
|
* Result from a `h` (or `s`) call.
|
|
*/
|
|
|
|
export {h} from './html.js'
|
|
export {s} from './svg.js'
|