mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
Fixing type errors in tests
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
|
||||
module.exports = parse;
|
||||
exports.parse = parse;
|
||||
|
||||
function parse(str) {
|
||||
return new Parser(str).parse();
|
||||
|
@ -6,6 +6,5 @@ declare module "css-value" {
|
||||
value?: number;
|
||||
}
|
||||
|
||||
function parse(cssValue: string): Array<CSSValue>;
|
||||
export = parse;
|
||||
export function parse(cssValue: string): Array<CSSValue>;
|
||||
}
|
||||
|
Reference in New Issue
Block a user