We've duplicated a type definition for this repo a few times now:
To DRY things up, we should add this definition to this repo.
The type def we've used (at time of this issue creation) is:
declare module '40phaser' {
export type LaunchOptions = {
phaser?: typeof Phaser;
phaserOptions: {
parent?: string;
};
};
export const launch40Phaser: (options: LaunchOptions) => void;
}
We've duplicated a type definition for this repo a few times now:
To DRY things up, we should add this definition to this repo.
The type def we've used (at time of this issue creation) is: