2021-01-28 10:17:21 +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>;
|
|
|
|
}
|
2023-02-22 09:27:57 +08:00
|
|
|
export declare class Command_SwitchDoorOrDrawer implements Command {
|
2021-01-28 10:17:21 +08:00
|
|
|
private _isShow;
|
2023-02-22 09:27:57 +08:00
|
|
|
private _IsDoor;
|
|
|
|
constructor(_isShow: boolean, _IsDoor: boolean);
|
2021-01-28 10:17:21 +08:00
|
|
|
exec(): Promise<void>;
|
|
|
|
}
|
|
|
|
export declare class SelectAll implements Command {
|
2022-02-16 11:15:31 +08:00
|
|
|
Transparency: boolean;
|
2021-01-28 10:17:21 +08:00
|
|
|
exec(): Promise<void>;
|
|
|
|
}
|
2022-02-16 11:15:31 +08:00
|
|
|
export declare class ShowHideSelectPanel implements Command {
|
|
|
|
exec(): void;
|
|
|
|
}
|
2021-01-28 10:17:21 +08:00
|
|
|
//# sourceMappingURL=HideSelected.d.ts.map
|