-
Notifications
You must be signed in to change notification settings - Fork 203
/
Copy pathtypescript-snippets.cson
89 lines (89 loc) · 1.88 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
'.source.ts':
'reference':
'prefix': 'ref'
'body': """
/// <reference 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:return true;}
}
"""
'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
}
"""