Skip to content

Instantly share code, notes, and snippets.

@sudomaxime
Created July 29, 2020 21:43
Show Gist options
  • Save sudomaxime/2b5cbcc43b280328bcfd11d4956fc90d to your computer and use it in GitHub Desktop.
Save sudomaxime/2b5cbcc43b280328bcfd11d4956fc90d to your computer and use it in GitHub Desktop.
class Dog {
isDog () {
return true;
}
}
// This is fine
var dog: Dog;
// This is wrong, Syntax error 'Dog' has already been declared.
var Dog;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment