UNPKG

@tdb/util

Version:
15 lines (11 loc) 401 B
import { GlamorValue, CssProps, IStyle } from './types'; import { format, transformStyle } from './css'; import { className, merge } from './glamor'; import { arrayToEdges } from './util'; const api = format as any; api.className = className; api.merge = merge; api.transform = transformStyle; api.arrayToEdges = arrayToEdges; export { GlamorValue, CssProps }; export const css = format as IStyle;