vdrag-topo-ui
Version:
16 lines (15 loc) • 329 B
TypeScript
type OptionItem = {
label: string;
value: string;
};
export type ConfigProps = {
label: string;
key: string;
callback: (param?: any) => null;
openDialog?: boolean;
fileStyleOptions?: OptionItem[];
showFileStyleSelect?: boolean;
fileStyleKey: string;
fileStyleTitle?: string;
};
export {};