File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,34 @@ export type Theme = {
10
10
* Characters used for dividers.
11
11
*/
12
12
divider : Divider ;
13
+ /**
14
+ * Characters used for the spinner.
15
+ */
16
+ spinner ?: readonly string [ ] ;
17
+ /**
18
+ * Characters used for the head symbol of the input component.
19
+ */
20
+ headSymbol ?: string ;
21
+ /**
22
+ * Characters used for the fail symbol of the input component.
23
+ */
24
+ failSymbol ?: string ;
25
+ /**
26
+ * Icon used for the matcher indicator.
27
+ */
28
+ matcherIcon ?: string ;
29
+ /**
30
+ * Icon used for the sorter indicator.
31
+ */
32
+ sorterIcon ?: string ;
33
+ /**
34
+ * Icon used for the renderer indicator.
35
+ */
36
+ rendererIcon ?: string ;
37
+ /**
38
+ * Icon used for the previewer indicator.
39
+ */
40
+ previewerIcon ?: string ;
13
41
} ;
14
42
15
43
/**
You can’t perform that action at this time.
0 commit comments