1 | import { Sheet, SheetInit } from 'twind';
|
2 | export * from 'twind';
|
3 | export * from 'twind/sheets';
|
4 |
|
5 | interface AsyncVirtualSheet extends Sheet {
|
6 | readonly target: readonly string[];
|
7 | init: SheetInit;
|
8 | reset: () => void;
|
9 | enable: () => void;
|
10 | disable: () => void;
|
11 | }
|
12 | declare const asyncVirtualSheet: () => AsyncVirtualSheet;
|
13 |
|
14 | export { AsyncVirtualSheet, asyncVirtualSheet };
|
15 | //# sourceMappingURL=server.d.ts.map
|