webcad-ue4-api/types/Common/CommonSelectOption.d.ts
2021-01-28 10:17:21 +08:00

15 lines
444 B
TypeScript

import { ComposingType, LinesType, FaceDirection } from "../UI/Store/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;
}[];
//# sourceMappingURL=CommonSelectOption.d.ts.map