mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00

This is the default location when installing from npm, and Angular uses that when parsing CSS. Updated module paths, requires, csproj, tsconfig and grunt tasks.
11 lines
223 B
TypeScript
11 lines
223 B
TypeScript
declare module "css-value" {
|
|
export interface CSSValue {
|
|
type: string;
|
|
string: string;
|
|
unit: string;
|
|
value: number;
|
|
}
|
|
|
|
export function parse(cssValue: string): Array<CSSValue>;
|
|
}
|