UNPKG

@aesthetic/style

Version:

A low-level, high-performance, atomic-based CSS-in-JS style engine.

17 lines 676 B
/** * @copyright 2020, Miles Johnson * @license https://opensource.org/licenses/MIT */ import { ClassName, EngineOptions } from '@aesthetic/types'; import { createStyleElements, getStyleElement } from './client/dom'; import { StyleEngine } from './types'; export * from './common/cache'; export * from './common/constants'; export * from './common/engine'; export * from './common/helpers'; export * from './common/sheet'; export * from './common/syntax'; export * from './types'; export { createStyleElements, getStyleElement }; export declare function createClientEngine(options?: Partial<EngineOptions<ClassName>>): StyleEngine; //# sourceMappingURL=index.d.ts.map