oncss
Version:
A CSS framework for modern web development.
14 lines (11 loc) • 559 B
TypeScript
import { CSSFactoryType } from './types.js';
declare const ONCSS_CACHE: {
set(cacheId: string, cachekey: string, value: CSSFactoryType): void;
get(cacheId: string, cachekey: string): CSSFactoryType | undefined;
has(cacheId: string, cachekey: string): boolean;
delete(cacheId: string, cachekey: string): void;
caches(): Map<string, Map<string, CSSFactoryType>>;
};
declare const formatCSSProp: (prop: string) => string;
declare const formatCSSValue: (prop: string, val: any) => any;
export { ONCSS_CACHE, formatCSSProp, formatCSSValue };