Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
203 B

4 years ago
  1. # -*- mode: snippet; require-final-newline: nil -*-
  2. # name: class
  3. # key: class
  4. # --
  5. class ${1:Class}${2: extends ${3:ParentClass}} {
  6. ${4:constructor(${5:arg}) {
  7. ${6:super(arg);}
  8. $7
  9. }}
  10. $0
  11. }