mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-14 10:01:08 +08:00
9 lines
147 B
TypeScript
9 lines
147 B
TypeScript
interface CSSValue {
|
|
type: string;
|
|
string: string;
|
|
unit?: string;
|
|
value?: number;
|
|
}
|
|
|
|
export function parse(cssValue: string): Array<CSSValue>;
|