props.ts 278 B

1234567891011
  1. import type { ClActionSheetItem, ClActionSheetOptions, PassThroughProps } from "../../types";
  2. export type ClActionSheetPassThrough = {
  3. className?: string;
  4. item?: PassThroughProps;
  5. };
  6. export type ClActionSheetProps = {
  7. className?: string;
  8. pt?: ClActionSheetPassThrough;
  9. };