estilos
Version:
A tiny library for getting most out of CSS variables
7 lines (6 loc) • 353 B
TypeScript
declare function createState(defaultState?: {}, element?: string | HTMLElement): Function;
declare function $get(property: string): string;
declare function $var(property: string): string;
declare function addQuotes(text: string): string;
declare function removeQuotes(text: string): string;
export { createState, $get, $var, addQuotes, removeQuotes };