25 lines
724 B
TypeScript
25 lines
724 B
TypeScript
import { Command } from "../Editor/CommandMachine";
|
|
import { IConfigOption } from "../UI/Components/Board/UserConfigComponent";
|
|
import { IConfigStore } from "../UI/Store/BoardStore";
|
|
export declare class AutoHoleFaceSetting implements Command {
|
|
store: AutoHoleFaceSettingStore;
|
|
exec(): Promise<void>;
|
|
}
|
|
declare class AutoHoleFaceSettingStore implements IConfigStore {
|
|
configName: string;
|
|
configsNames: string[];
|
|
config: {
|
|
option: {
|
|
hight: number;
|
|
};
|
|
};
|
|
InitOption(): void;
|
|
SaveConfig(): {
|
|
option: {
|
|
hight: number;
|
|
};
|
|
};
|
|
UpdateOption(conf: IConfigOption<any>): void;
|
|
}
|
|
export {};
|
|
//# sourceMappingURL=AutoHoleFaceSetting.d.ts.map
|