开发:更新api
This commit is contained in:
20
types/Add-on/AutoHoleFaceSetting.d.ts
vendored
20
types/Add-on/AutoHoleFaceSetting.d.ts
vendored
@@ -1,5 +1,25 @@
|
||||
import { Command } from "../Editor/CommandMachine";
|
||||
import { IConfigOption } from "../UI/Components/Board/UserConfig";
|
||||
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
|
Reference in New Issue
Block a user