Files
NativeScript/tns-core-modules/css-value/reworkcss-value.d.ts
Panayot Cankov d098ff43f5 Add module names for the typedoc, make it work
Mark members with @private for typedoc.
2017-04-20 16:58:30 +03:00

13 lines
198 B
TypeScript

/**
* @module "css-value"
*/ /** */
interface CSSValue {
type: string;
string: string;
unit?: string;
value?: number;
}
export function parse(cssValue: string): Array<CSSValue>;