12 lines
278 B
TypeScript
12 lines
278 B
TypeScript
import type { ClActionSheetItem, ClActionSheetOptions, PassThroughProps } from "../../types";
|
|
|
|
export type ClActionSheetPassThrough = {
|
|
className?: string;
|
|
item?: PassThroughProps;
|
|
};
|
|
|
|
export type ClActionSheetProps = {
|
|
className?: string;
|
|
pt?: ClActionSheetPassThrough;
|
|
};
|