mirror of
https://github.com/bendtherules/test-octokit-throttling.git
synced 2026-08-18 13:51:58 +00:00
10 lines
268 B
TypeScript
10 lines
268 B
TypeScript
import { MyLibrary } from './MyLibrary';
|
|
|
|
console.log('See this in your browser console: Typescript Webpack Starter Launched');
|
|
|
|
const myLibrary = new MyLibrary();
|
|
const result = myLibrary.getRepos();
|
|
|
|
console.log(myLibrary);
|
|
console.log(`A random number ${result}`);
|