Removed old definition file

This commit is contained in:
PeekabooSteam 2023-12-03 18:48:51 +00:00
parent 38fc60352a
commit 81d8a88abd

View File

@ -1,30 +0,0 @@
export interface OlympusPlugin {
getName: () => string;
initialize: (any) => boolean;
}
export class Marker {}
export class CustomMarker extends Marker {}
export class Unit extends CustomMarker {}
export class OlympusApp {
getShortcutManager():ShortcutManager;
getUnitsManager():UnitsManager;
}
export class ShortcutManager {
add( name:string, shortcut:Shortcut ): ShortcutManager;
getKeysBeingHeld(): string[];
keyComboMatches( combo: string[] ): boolean;
onKeyDown( callback:CallableFunction );
onKeyUp( callback:CallableFunction );
}
export class UnitsManager {
getUnits(): { [ID: number]: Unit }
}
export declare global {
function getOlympusPlugin(): OlympusPlugin;
}