@cainiaofe/cn-ui-m
Version:
15 lines (14 loc) • 404 B
TypeScript
import { CnActionSheetProps } from './cn-action-sheet-props';
interface CustomProps {
clsPrefix?: string;
options: MenuOptionsProps[];
}
export interface MenuOptionsProps {
label?: string;
props?: {
label?: string;
children?: string;
};
}
export type MenuActionSheetProps = Pick<CnActionSheetProps, 'onClick' | 'onClose' | 'disabledIndexes'> & CustomProps;
export {};