15 lines
444 B
TypeScript
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
|