2020-09-24 11:04:12 +08:00
|
|
|
import { Command } from "../Editor/CommandMachine";
|
|
|
|
export declare class Command_HideSelected implements Command {
|
|
|
|
exec(): Promise<void>;
|
|
|
|
}
|
|
|
|
export declare class Command_ShowAll implements Command {
|
|
|
|
exec(): Promise<void>;
|
|
|
|
}
|
|
|
|
export declare class Command_HideUnselected implements Command {
|
|
|
|
exec(): Promise<void>;
|
|
|
|
}
|
|
|
|
export declare class Command_SwitchDoor implements Command {
|
|
|
|
private _isShow;
|
|
|
|
constructor(_isShow: boolean);
|
|
|
|
exec(): Promise<void>;
|
|
|
|
}
|
|
|
|
export declare class SelectAll implements Command {
|
2021-05-28 11:34:40 +08:00
|
|
|
Transparency: boolean;
|
2020-09-24 11:04:12 +08:00
|
|
|
exec(): Promise<void>;
|
|
|
|
}
|
2021-04-06 17:12:55 +08:00
|
|
|
export declare class ShowHideSelectPanel implements Command {
|
|
|
|
exec(): void;
|
|
|
|
}
|
2020-09-24 11:04:12 +08:00
|
|
|
//# sourceMappingURL=HideSelected.d.ts.map
|