UNPKG

@dvcol/common-utils

Version:

Typescript library for common utility functions and constants

7 lines (5 loc) 279 B
type Value = string | undefined | null; type Values = Value | Value[] | Record<string, boolean | string> | CSSStyleDeclaration; declare const toClass: (...args: Values[]) => string; declare const toStyle: (...args: Values[]) => string; export { type Values, toClass, toStyle };