20 lines
612 B
TypeScript
20 lines
612 B
TypeScript
import { FaceDirection } from "../Add-on/DrawDrilling/DrillType";
|
|
import { BoardOpenDir, ComposingType, LinesType } from "../DatabaseServices/Entity/BoardInterface";
|
|
/**排版面选择项 */
|
|
export declare const ComposingFaceSelectOption: {
|
|
label: string;
|
|
value: ComposingType;
|
|
}[];
|
|
export declare const LineTypeSelectOption: {
|
|
label: string;
|
|
value: LinesType;
|
|
}[];
|
|
export declare const BigFaceSelectOption: {
|
|
label: string;
|
|
value: FaceDirection;
|
|
}[];
|
|
export declare const openDirOptions: {
|
|
label: string;
|
|
value: BoardOpenDir;
|
|
}[];
|
|
//# sourceMappingURL=CommonSelectOption.d.ts.map
|