Rename the files

This commit is contained in:
Panayot Cankov
2016-05-20 12:11:27 +03:00
parent ca3c2877c2
commit e135c20b14
803 changed files with 1077 additions and 648 deletions

31
tns-core-modules/css/reworkcss.d.ts vendored Normal file
View File

@@ -0,0 +1,31 @@
declare module "css" {
export interface Position {
start: { line: number; column: number };
end: { line: number; column: number };
}
export interface Node {
type: string;
position: Position;
}
export interface Declaration extends Node {
property: string;
value: string;
}
export interface Rule extends Node {
selectors: string[];
declarations: Declaration[];
}
export interface StyleSheet {
rules: Rule[];
}
export interface SyntaxTree {
stylesheet: StyleSheet;
}
export function parse(css: string, options: any): SyntaxTree;
}