Skip to content

Instantly share code, notes, and snippets.

@sergebat
Last active October 8, 2018 18:13
Show Gist options
  • Save sergebat/88f66f49b215e2452a182d14a7f27cdb to your computer and use it in GitHub Desktop.
Save sergebat/88f66f49b215e2452a182d14a7f27cdb to your computer and use it in GitHub Desktop.
VSCode snippet: TypeScript class default export from module (class name === file name)
{
"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