Initial commit

Contains basic working logic to find unused repos and show in console
This commit is contained in:
2018-05-31 17:48:44 +05:30
commit bfb2b54634
21 changed files with 6798 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import { Greeter } from './greeter';
export * from './greeter';
// tslint:disable-next-line:only-arrow-functions
(function(currentWindow: Window) {
// execute when load index.js
// tslint:disable-next-line:no-console
console.log('hello world');
// assign Greeter to global
const myWindow = currentWindow as any;
myWindow.Greeter = Greeter;
// we can use Greeter , execute following in console
// var greet = new Greeter('myName');
// greet.greet();
})(window);