mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00
11 lines
218 B
TypeScript
11 lines
218 B
TypeScript
declare module "css-value" {
|
|
interface CSSValue {
|
|
type: string;
|
|
string: string;
|
|
unit?: string;
|
|
value?: number;
|
|
}
|
|
|
|
export function parse(cssValue: string): Array<CSSValue>;
|
|
}
|