motoko 3.8.3 → 3.8.4
Sign up to get free protection for your applications and to get access to all the features.
package/contrib/snippets.json
CHANGED
@@ -397,7 +397,7 @@
|
|
397
397
|
"set-timer"
|
398
398
|
],
|
399
399
|
"body": [
|
400
|
-
"let ${1:id} = Timer.setTimer(#seconds ${2:0}, func () {",
|
400
|
+
"let ${1:id} = Timer.setTimer<system>(#seconds ${2:0}, func () {",
|
401
401
|
"\t$0",
|
402
402
|
"});"
|
403
403
|
]
|
@@ -407,7 +407,7 @@
|
|
407
407
|
"recurring-timer"
|
408
408
|
],
|
409
409
|
"body": [
|
410
|
-
"let ${1:id} = Timer.recurringTimer(#seconds ${2:0}, func () {",
|
410
|
+
"let ${1:id} = Timer.recurringTimer<system>(#seconds ${2:0}, func () {",
|
411
411
|
"\t$0",
|
412
412
|
"});"
|
413
413
|
]
|
package/package.json
CHANGED