webcad-api/types/Add-on/SwitchVisualStyles.d.ts
2020-09-24 11:04:12 +08:00

10 lines
419 B
TypeScript

import { Command } from "../Editor/CommandMachine";
import { RenderType } from "../GraphicsSystem/RenderType";
import { ViewportEntity } from "../DatabaseServices/ViewportEntity";
export declare class ChangeRenderType implements Command {
private _type;
constructor(_type: RenderType);
exec(): Promise<void>;
ChangeViewport(vs: ViewportEntity[]): void;
}
//# sourceMappingURL=SwitchVisualStyles.d.ts.map