Update toolkit.code-snippets

This commit is contained in:
volatile-static 2023-01-15 08:47:26 +08:00 committed by GitHub
parent 0f33389dae
commit a0b33a2211
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,23 +1,4 @@
{
"createElementsFromJSON - full": {
"scope": "javascript,typescript",
"prefix": [
"createElementsFromJSON"
],
"body": [
"createElementsFromJSON(${0:document}, {",
"\ttag: '${1:div}',",
"}, ${16:true});"
],
"description": "tools/ui/creatElementsFromJSON"
},
"createElementsFromJSON - minimum": {
"scope": "javascript,typescript",
"prefix": [
"createElementsFromJSON"
],
"body": "createElementsFromJSON(document, { tag: '$0' });"
},
"appendElement - full": {
"scope": "javascript,typescript",
"prefix": "appendElement",