eyes-of-a-trader/types/callbacks/PresetCallbacks.d.ts
2023-02-13 20:05:30 +11:00

9 lines
322 B
TypeScript

import { PresetController } from "../controllers/PresetController";
import { OnLoad } from "../di/OnLoad";
export declare class PresetCallbacks implements OnLoad {
protected presetController: PresetController;
constructor(presetController: PresetController);
onLoad(): Promise<void>;
getRoute(): string;
}