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