Files

18 lines
365 B
TypeScript
Raw Permalink Normal View History

2025-11-13 10:36:23 +08:00
import type { PassThroughProps } from "../../types";
export type ClLoadmorePassThrough = {
className?: string;
icon?: PassThroughProps;
text?: PassThroughProps;
};
export type ClLoadmoreProps = {
className?: string;
pt?: ClLoadmorePassThrough;
loading?: boolean;
loadingText?: string;
finish?: boolean;
finishText?: string;
safeAreaBottom?: boolean;
};