mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 11:01:21 +08:00
13 lines
198 B
TypeScript
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>;
|