twind
Version:
compiles tailwind like shorthand syntax into css at runtime
16 lines (13 loc) • 420 B
TypeScript
import { Sheet, SheetInit } from 'twind';
export * from 'twind';
export * from 'twind/sheets';
interface AsyncVirtualSheet extends Sheet {
readonly target: readonly string[];
init: SheetInit;
reset: () => void;
enable: () => void;
disable: () => void;
}
declare const asyncVirtualSheet: () => AsyncVirtualSheet;
export { AsyncVirtualSheet, asyncVirtualSheet };
//# sourceMappingURL=server.d.ts.map