mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
css-value parse fix to match the new parse function export.
This commit is contained in:
7
css-value/reworkcss-value.d.ts
vendored
7
css-value/reworkcss-value.d.ts
vendored
@ -1,10 +1,13 @@
|
||||
declare module "css-value" {
|
||||
export interface CSSValue {
|
||||
interface CSSValue {
|
||||
type: string;
|
||||
string: string;
|
||||
unit: string;
|
||||
value: number;
|
||||
}
|
||||
|
||||
export function parse(cssValue: string): Array<CSSValue>;
|
||||
interface ParserFunction {
|
||||
(cssValue: string): Array<CSSValue>;
|
||||
}
|
||||
export = ParserFunction;
|
||||
}
|
||||
|
Reference in New Issue
Block a user