props.ts 304 B

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