We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f561e6b commit 00ec9b0Copy full SHA for 00ec9b0
types/index.d.ts
@@ -1,8 +1,14 @@
1
-import {Node} from 'posthtml-parser';
+export enum closingSingleTagOptionEnum {
2
+ tag = 'tag',
3
+ slash = 'slash',
4
+ default = 'default',
5
+ closeAs = 'closeAs'
6
+}
7
-export enum closingSingleTagEnum {
- Tag = 'tag',
- Slash = 'slash'
8
+export enum closingSingleTagTypeEnum {
9
10
11
+ default = 'default'
12
}
13
14
export enum quoteStyleEnum {
@@ -27,7 +33,7 @@ export type Options = {
27
33
* tag: `<br></br>`, slash: `<br />`, default: `<br>`
28
34
*
29
35
*/
30
- closingSingleTag?: closingSingleTagEnum;
36
+ closingSingleTag?: closingSingleTagOptionEnum;
31
37
32
38
/**
39
* If all attributes should be quoted.
0 commit comments