UNPKG

@kuma-ui/compiler

Version:

🐻 Kuma UI is a utility-first, zero-runtime CSS-in-JS library that offers an outstanding developer experience and optimized performance.

12 lines (10 loc) 217 B
type CompileArg = { code: string; id: string; wasm?: boolean; }; declare const compileSync: ({ code, id, wasm }: CompileArg) => { code: string; css: string; } | undefined; export { compileSync };