Skip to content

Instantly share code, notes, and snippets.

@frontdevops
Created August 25, 2016 07:52
Show Gist options
  • Save frontdevops/c7bf1952b3e6f91a3ceb03da5922a95b to your computer and use it in GitHub Desktop.
Save frontdevops/c7bf1952b3e6f91a3ceb03da5922a95b to your computer and use it in GitHub Desktop.
module Singleton {
class Instance {
constructor(public foo: number = 123) {}
}
let instance = new Instance;
export function getInstance() :Instance {
return instance;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment