11 lines
209 B
TypeScript
11 lines
209 B
TypeScript
/// <reference path="ProfileGenerator.ts" />
|
|
|
|
/**
|
|
* extend Window to make our global instance available (for debugging purposes)
|
|
*/
|
|
interface Window {
|
|
/**
|
|
* our instance
|
|
*/
|
|
pg: ProfileGenerator;
|
|
}
|