Browse Source

Prettier

master
Dylan Baker 5 years ago
parent
commit
90a72e6600
1 changed files with 6 additions and 6 deletions
  1. 6
    6
      src/ast.ts

+ 6
- 6
src/ast.ts View File

12
 
12
 
13
 export type Child = Rule | RuleSet | Application | MediaQuery | Mixin;
13
 export type Child = Rule | RuleSet | Application | MediaQuery | Mixin;
14
 export type Value = Literal | Identifier | Application;
14
 export type Value = Literal | Identifier | Application;
15
-export type Node
16
-  = Application
15
+export type Node =
16
+  | Application
17
   | Identifier
17
   | Identifier
18
   | Keyframes
18
   | Keyframes
19
   | Let
19
   | Let
23
   | Mixin
23
   | Mixin
24
   | Property
24
   | Property
25
   | Rule
25
   | Rule
26
-  | RuleSet
26
+  | RuleSet;
27
 
27
 
28
 export * from './ast/application';
28
 export * from './ast/application';
29
 export * from './ast/binding';
29
 export * from './ast/binding';
34
 export * from './ast/mediaQuery';
34
 export * from './ast/mediaQuery';
35
 export * from './ast/mediaQueryPredicate';
35
 export * from './ast/mediaQueryPredicate';
36
 export * from './ast/mixin';
36
 export * from './ast/mixin';
37
-export * from'./ast/property';
37
+export * from './ast/property';
38
 export * from './ast/rule';
38
 export * from './ast/rule';
39
-export * from'./ast/ruleSet';
40
-export * from'./ast/selector';
39
+export * from './ast/ruleSet';
40
+export * from './ast/selector';
41
 
41
 
42
 export interface Opts {
42
 export interface Opts {
43
   depth: number;
43
   depth: number;

Loading…
Cancel
Save