-
Notifications
You must be signed in to change notification settings - Fork 203
/
Copy pathtypescript-snippets.cson
128 lines (128 loc) · 2.8 KB
/
typescript-snippets.cson
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
'.source.ts':
'reference':
'prefix': 'ref'
'body': """
/// <reference path="$1"/>
"""
'AMD module name':
'prefix': 'amd-mod'
'body': """
/// <amd-module name="$1"/>
"""
'AMD dependency':
'prefix': 'amd-dep'
'body': """
/// <amd-dependency path="$1"/>
"""
'import':
'prefix': 'import'
'body': """
import ${2} from "${1:path}";$3
"""
'importr':
'prefix': 'importr'
'body': """
import ${1} = require("${2}");$3
"""
'JSDoc single line':
'prefix': '//'
'body': """
/** $1 */
"""
'JSDoc multi line':
'prefix': '///'
'body': """
/**
* $1
*/
"""
'if':
'prefix': 'if'
'body': """
if (${1:true}) {
$2
}
"""
'ifelse':
'prefix': 'ifel'
'body': """
if (${1:true}) {
$2
} else {}
"""
'while':
'prefix': 'while'
'body': """
while (${1:true}) {
$2
}
"""
'interface':
'prefix': 'interface'
'body': """
interface ${1:Name} {
$2
}
"""
'class':
'prefix': 'class'
'body': """
class ${1:Name} {
$2
}
"""
'function':
'prefix': 'function'
'body': """
function ${1:name}(${2:parameter}) {
${3:throw new Error("Not implemented yet");}
}
"""
'fatarrow':
'prefix': 'arr'
'body': """
(${1:parameter}) => { ${2:return true;} }
"""
'for':
'prefix': 'for'
'body': """
for (let ${2:i} = 0; ${2:i} < ${1:array}.length; ${2:i}++) {
${1:array}[${2:i}]$3;
}
"""
'forof':
'prefix': 'forof'
'body': """
for (let ${2:variable} of ${1:iterable}) {
$3
}
"""
'forea':
'prefix': 'forea'
'body': """
forEach(${1:variable} => {
$2
});
"""
'forin':
'prefix': 'forin'
'body': """
for (let ${2:key} in ${1:iterable}) {
$3
}
"""
'externalmodule':
'prefix': 'declaremodule'
'body': """
declare module "$1" {
var $2:${3:any};
export = $2;
}$4
"""
'transformer':
'prefix': 'transform'
'body': """
transform:${1:null}{
$2
}transform:${1:null}
"""