mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 21:01:34 +08:00
11 lines
237 B
TypeScript
11 lines
237 B
TypeScript
declare module "js-libs/reworkcss-value" {
|
|
export interface CSSValue {
|
|
type: string;
|
|
string: string;
|
|
unit: string;
|
|
value: number;
|
|
}
|
|
|
|
export function parse(cssValue: string): Array<CSSValue>;
|
|
}
|