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