Przeglądaj źródła

Prettier

master
Dylan Baker 5 lat temu
rodzic
commit
90a72e6600
1 zmienionych plików z 6 dodań i 6 usunięć
  1. 6
    6
      src/ast.ts

+ 6
- 6
src/ast.ts Wyświetl plik

@@ -12,8 +12,8 @@ import { RuleSet } from './ast/ruleSet';
12 12
 
13 13
 export type Child = Rule | RuleSet | Application | MediaQuery | Mixin;
14 14
 export type Value = Literal | Identifier | Application;
15
-export type Node
16
-  = Application
15
+export type Node =
16
+  | Application
17 17
   | Identifier
18 18
   | Keyframes
19 19
   | Let
@@ -23,7 +23,7 @@ export type Node
23 23
   | Mixin
24 24
   | Property
25 25
   | Rule
26
-  | RuleSet
26
+  | RuleSet;
27 27
 
28 28
 export * from './ast/application';
29 29
 export * from './ast/binding';
@@ -34,10 +34,10 @@ export * from './ast/literal';
34 34
 export * from './ast/mediaQuery';
35 35
 export * from './ast/mediaQueryPredicate';
36 36
 export * from './ast/mixin';
37
-export * from'./ast/property';
37
+export * from './ast/property';
38 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 42
 export interface Opts {
43 43
   depth: number;

Ładowanie…
Anuluj
Zapisz