Skip to content

Instantly share code, notes, and snippets.

@frontdevops
Last active August 25, 2016 07:44
Show Gist options
  • Save frontdevops/bb0dab280635b23d17b234744e78edd8 to your computer and use it in GitHub Desktop.
Save frontdevops/bb0dab280635b23d17b234744e78edd8 to your computer and use it in GitHub Desktop.
namespace Singleton {
interface Instance {
foo: number;
}
const instance :Instance = {
foo: 123
};
export function getInstance() :Instance {
return instance;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment