Last active
October 8, 2018 18:13
-
-
Save sergebat/88f66f49b215e2452a182d14a7f27cdb to your computer and use it in GitHub Desktop.
VSCode snippet: TypeScript class default export from module (class name === file name)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"PublicClass": { | |
"prefix": "clazz", | |
"body": [ | |
"export default class $TM_FILENAME_BASE {", | |
"\tconstructor() {", | |
"\t}", | |
"}", | |
"" | |
], | |
"description": "Public Class" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment