mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
Move css and css-value modules to the toplevel.
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.
This commit is contained in:
10
css-value/reworkcss-value.d.ts
vendored
Normal file
10
css-value/reworkcss-value.d.ts
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
declare module "css-value" {
|
||||
export interface CSSValue {
|
||||
type: string;
|
||||
string: string;
|
||||
unit: string;
|
||||
value: number;
|
||||
}
|
||||
|
||||
export function parse(cssValue: string): Array<CSSValue>;
|
||||
}
|
Reference in New Issue
Block a user