mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Rename the files
This commit is contained in:
31
tns-core-modules/css/reworkcss.d.ts
vendored
Normal file
31
tns-core-modules/css/reworkcss.d.ts
vendored
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user