1 | import * as preact from 'preact';
|
2 | export * from 'preact';
|
3 | export { createPortal } from 'preact/compat';
|
4 |
|
5 | declare function flushSync(runBeforeFlush: any): void;
|
6 | declare function createContext<T>(defaultValue: T): preact.Context<T>;
|
7 |
|
8 | export { createContext, flushSync };
|