Last active
July 18, 2017 13:17
-
-
Save olegdulin/d5d518286af9db3b46ff7baa28cad30d to your computer and use it in GitHub Desktop.
Singleton in TypeScript
This file contains 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
import * as mySingleton from './Singleton'; | |
mySingleton.doSomething(); |
This file contains 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
export function doSomething():void { | |
console.log("Hello world"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment