File tree Expand file tree Collapse file tree 5 files changed +21
-25
lines changed Expand file tree Collapse file tree 5 files changed +21
-25
lines changed Original file line number Diff line number Diff line change 48
48
"devDependencies" : {
49
49
"@babel/eslint-parser" : " ^7.17.0"
50
50
}
51
- }
51
+ }
Original file line number Diff line number Diff line change 5
5
},
6
6
"exclude" : [" node_modules" , " dist" ],
7
7
"include" : [" src/**/*" , " build/**/*" , " test/**/*" ]
8
- }
8
+ }
Original file line number Diff line number Diff line change 46
46
"attributes" : " dist/vetur/attributes.json"
47
47
},
48
48
"dependencies" : {
49
- "@types/markdown-it" : " ^12.2.3" ,
50
49
"markdown-it" : " ^12.3.2" ,
51
50
"markdown-it-container" : " ^3.0.0" ,
52
51
"markdown-it-imsize" : " ^2.0.1" ,
80
79
"fs-extra" : " ^10.1.0" ,
81
80
"kolorist" : " ^1.8.0" ,
82
81
"open" : " ^8.4.0" ,
83
- "postcss" : " 8.4.12 " ,
82
+ "postcss" : " 8.4.49 " ,
84
83
"punycode" : " ^2.3.1" ,
85
- "quasar-json-api" : " 2.0.0-alpha.2 " ,
84
+ "quasar-json-api" : " 2.0.0-alpha.5 " ,
86
85
"rimraf" : " ^3.0.2" ,
87
86
"rollup" : " ^2.70.2" ,
88
87
"rtlcss" : " ^3.5.0" ,
Original file line number Diff line number Diff line change 1
- import MarkdownIt from " markdown-it" ;
2
- export * from " ./vue-prop-types" ;
1
+ import MarkdownIt from ' markdown-it'
2
+ export * from ' ./vue-prop-types'
3
3
4
4
export interface TocDefinition {
5
- id : String ,
6
- label : string ,
7
- level ?: number ,
8
- children ?: TocDefinitionArray
9
- } ;
10
- export type TocDefinitionArray = TocDefinition [ ] ;
5
+ id : String
6
+ label : string
7
+ level ?: number
8
+ children ?: TocDefinitionArray
9
+ }
11
10
12
- export type MarkdownItPlugin =
13
- MarkdownIt . PluginSimple | MarkdownIt . PluginWithOptions | MarkdownIt . PluginWithParams ;
14
- export type MarkdownItPluginsArray = MarkdownItPlugin [ ] ;
11
+ export type TocDefinitionArray = TocDefinition [ ]
12
+
13
+ export type MarkdownItPlugin =
14
+ | MarkdownIt . PluginSimple
15
+ | MarkdownIt . PluginWithOptions
16
+ | MarkdownIt . PluginWithParams
17
+ export type MarkdownItPluginsArray = MarkdownItPlugin [ ]
Original file line number Diff line number Diff line change @@ -2,14 +2,8 @@ export type VueClassObjectProp = {
2
2
[ value : string ] : any
3
3
}
4
4
5
- export type VueClassProp =
6
- | string
7
- | Array < VueClassProp >
8
- | VueClassObjectProp ;
5
+ export type VueClassProp = string | Array < VueClassProp > | VueClassObjectProp
9
6
10
- export type VueStyleObjectProp = Partial < CSSStyleDeclaration > ;
7
+ export type VueStyleObjectProp = Partial < CSSStyleDeclaration >
11
8
12
- export type VueStyleProp =
13
- | string
14
- | Array < VueStyleProp >
15
- | VueStyleObjectProp ;
9
+ export type VueStyleProp = string | Array < VueStyleProp > | VueStyleObjectProp
You can’t perform that action at this time.
0 commit comments