Files

13 lines
304 B
TypeScript
Raw Permalink Normal View History

2025-11-13 10:36:23 +08:00
import type { ClActionSheetItem, ClActionSheetOptions, PassThroughProps } from "../../types";
export type ClActionSheetPassThrough = {
className?: string;
item?: PassThroughProps;
list?: PassThroughProps;
};
export type ClActionSheetProps = {
className?: string;
pt?: ClActionSheetPassThrough;
};