mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
6 lines
260 B
TypeScript
6 lines
260 B
TypeScript
import { h, VNode, Component } from 'preact';
|
|
export * from 'preact/hooks';
|
|
declare function render(tree: VNode, parent: HTMLElement): void;
|
|
declare const html: (strings: TemplateStringsArray, ...values: any[]) => VNode;
|
|
export { h, html, render, Component };
|