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