webcad-ue4-api/types/Common/SelectEntity.d.ts
2024-10-29 17:14:43 +08:00

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