File tree Expand file tree Collapse file tree 2 files changed +29
-4
lines changed Expand file tree Collapse file tree 2 files changed +29
-4
lines changed Original file line number Diff line number Diff line change 12
12
},
13
13
"Stacks Function" : {
14
14
"scope" : " typescript" ,
15
- "prefix" : " fun " ,
15
+ "prefix" : " func " ,
16
16
"body" : [
17
- " protected function $1($2)" ,
17
+ " public function $1($2)" ,
18
18
" {" ,
19
19
" $3" ,
20
20
" }"
23
23
},
24
24
"Stacks Method" : {
25
25
"scope" : " typescript" ,
26
- "prefix" : " fun " ,
26
+ "prefix" : " met " ,
27
27
"body" : [
28
- " protected function $1($2)" ,
28
+ " public function $1($2)" ,
29
29
" {" ,
30
30
" $3" ,
31
31
" }"
32
32
],
33
33
"description" : " Alias of the Stacks Function snippet"
34
34
},
35
+ "Stacks Protected Method" : {
36
+ "scope" : " typescript" ,
37
+ "prefix" : " pmet" ,
38
+ "body" : [
39
+ " protected function $1($2)" ,
40
+ " {" ,
41
+ " $3" ,
42
+ " }"
43
+ ],
44
+ "description" : " Bootstrap a Protected Function"
45
+ },
46
+ "Stacks Protected Function" : {
47
+ "scope" : " typescript" ,
48
+ "prefix" : " pfunct" ,
49
+ "body" : [
50
+ " protected function $1($2)" ,
51
+ " {" ,
52
+ " $3" ,
53
+ " }"
54
+ ],
55
+ "description" : " Alias of the Protected Function snippet"
56
+ },
35
57
"Print to console" : {
36
58
"scope" : " javascript,typescript" ,
37
59
"prefix" : " clo" ,
Original file line number Diff line number Diff line change
1
+ # Models
2
+
3
+ Your models are defined in this folder.
You can’t perform that action at this time.
0 commit comments