css-value parse fix to match the new parse function export.

This commit is contained in:
Hristo Deshev
2015-10-15 10:36:15 +03:00
parent ea62b3d487
commit 5d59c4b3ef
2 changed files with 8 additions and 5 deletions

View File

@ -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;
}