Files
WAI_Project_UNIX/uni_modules/cool-ui/components/cl-action-sheet/props.ts
2025-07-29 16:16:06 +08:00

13 lines
304 B
TypeScript

import type { ClActionSheetItem, ClActionSheetOptions, PassThroughProps } from "../../types";
export type ClActionSheetPassThrough = {
className?: string;
item?: PassThroughProps;
list?: PassThroughProps;
};
export type ClActionSheetProps = {
className?: string;
pt?: ClActionSheetPassThrough;
};