mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
Emitted decs
This commit is contained in:
15
client/@types/olympus/index.d.ts
vendored
15
client/@types/olympus/index.d.ts
vendored
@@ -1085,7 +1085,7 @@ declare module "unit/unit" {
|
|||||||
carpetBomb(latlng: LatLng): void;
|
carpetBomb(latlng: LatLng): void;
|
||||||
bombBuilding(latlng: LatLng): void;
|
bombBuilding(latlng: LatLng): void;
|
||||||
fireAtArea(latlng: LatLng): void;
|
fireAtArea(latlng: LatLng): void;
|
||||||
simulateFireFight(latlng: LatLng, groundElevation: number | null): void;
|
simulateFireFight(latlng: LatLng, targetGroundElevation: number | null): void;
|
||||||
/***********************************************/
|
/***********************************************/
|
||||||
onAdd(map: Map): this;
|
onAdd(map: Map): this;
|
||||||
}
|
}
|
||||||
@@ -1967,6 +1967,19 @@ declare module "server/servermanager" {
|
|||||||
getPaused(): boolean;
|
getPaused(): boolean;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
declare module "panels/unitlistpanel" {
|
||||||
|
import { OlympusApp } from "olympusapp";
|
||||||
|
import { Panel } from "panels/panel";
|
||||||
|
export class UnitListPanel extends Panel {
|
||||||
|
#private;
|
||||||
|
constructor(olympusApp: OlympusApp, panelElement: string, contentElement: string);
|
||||||
|
doUpdate(): void;
|
||||||
|
getContentElement(): HTMLElement;
|
||||||
|
startUpdates(): void;
|
||||||
|
stopUpdates(): void;
|
||||||
|
toggle(): void;
|
||||||
|
}
|
||||||
|
}
|
||||||
declare module "olympusapp" {
|
declare module "olympusapp" {
|
||||||
import { Map } from "map/map";
|
import { Map } from "map/map";
|
||||||
import { MissionManager } from "mission/missionmanager";
|
import { MissionManager } from "mission/missionmanager";
|
||||||
|
|||||||
Reference in New Issue
Block a user