@launchmenu/core
Version:
An environment for visual keyboard controlled applets
20 lines • 611 B
TypeScript
import { Command } from "../Command";
import { Resource } from "../dependencies/Resource";
declare type TestCommandArgs = {
onExecute?: () => Promise<void>;
onRevert?: () => Promise<void>;
duration?: number;
dependencies?: Resource[];
};
export declare class TestCommand extends Command {
protected data: TestCommandArgs;
protected dependencies: Resource[];
metadata: {
name: string;
};
constructor(data?: TestCommandArgs);
onExecute(): Promise<void>;
onRevert(): Promise<void>;
}
export {};
//# sourceMappingURL=TestCommand.helper.d.ts.map