UNPKG

2.42 kBTypeScriptView Raw
1
2declare namespace imba_snippets {
3
4 interface imports {
5 /**
6 * @importStar imba-codicons
7 */
8 CODICONS: void;
9
10 /**
11 * @importStar imba-material-icons
12 */
13 MATERIAL: void;
14
15 /**
16 * @importStar imba-seti-icons
17 */
18 SETI: void;
19 }
20
21 interface tags {
22 /**
23 * @snippet input type='checkbox'
24 */
25 'input-checkbox': void
26 /**
27 * @snippet input type='radio'
28 */
29 'input-radio': void
30
31 /**
32 * @snippet input type='range'
33 */
34 'input-range': void
35
36 /**
37 * @snippet input type='text'
38 */
39 'input-text': void
40
41 /**
42 * @snippet input type='color'
43 */
44 'input-color': void
45
46 /**
47 * @snippet input type='number'
48 */
49 'input-number': void
50
51 /**
52 * @snippet input type='email'
53 */
54 'input-email': void
55 }
56
57 interface types {
58 any: void
59 string: void
60 number: void
61 boolean: void
62 void: void
63 object: void;
64 unknown: void;
65 }
66
67 interface root {
68 /**
69 * @snippet export default class ${1:${TM_FILENAME_BASE/(.*)/${1:/pascalcase}/}}\n\t$0\n\n
70 */
71 'export-default-class': void
72
73 /**
74 * @snippet export class ${1:${TM_FILENAME_BASE/(.*)/${1:/pascalcase}/}}\n\t$0\n\n
75 */
76 'export-class': void
77
78 /**
79 * @snippet export tag ${1:${TM_FILENAME_BASE/(.*)/${1:/pascalcase}/}}\n\n\t<self> $0\n\n
80 */
81 'export-tag': void
82
83 /**
84 * @snippet tag ${1:${TM_FILENAME_BASE/(.*)/${1:/downcase}/}}\n\n\t<self> $0\n\n
85 */
86 'tag': void
87 }
88
89 interface values {
90 /**
91 * @snippet export default class ${1:${TM_FILENAME_BASE/(.*)/${1:/pascalcase}/}}\n\t$0\n\n
92 */
93 'export-default-class': void
94
95 /**
96 * @snippet export class ${1:${TM_FILENAME_BASE/(.*)/${1:/pascalcase}/}}\n\t$0\n\n
97 */
98 'export-class': void
99
100 /**
101 * @snippet export tag ${1:${TM_FILENAME_BASE/(.*)/${1:/pascalcase}/}}\n\n\t<self> $0\n\n
102 */
103 'export-tag': void
104
105 /**
106 * @snippet tag ${1:${TM_FILENAME_BASE/(.*)/${1:/downcase}/}}\n\n\t<self> $0\n\n
107 */
108 'tag': void
109 }
110}
\No newline at end of file