14 lines
401 B
TypeScript
14 lines
401 B
TypeScript
import { Command } from "../Editor/CommandMachine";
|
|
export declare enum SelectEntityType {
|
|
Board = "Board",
|
|
Curve = "Curve",
|
|
Dim = "Dim"
|
|
}
|
|
export declare class Command_SelectEntity implements Command {
|
|
private entityType;
|
|
private msg;
|
|
constructor(entityType: any, msg?: string);
|
|
Transparency: boolean;
|
|
exec(): Promise<void>;
|
|
}
|
|
//# sourceMappingURL=SelectEntity.d.ts.map
|