@aplus-frontend/ui
Version:
15 lines (14 loc) • 347 B
TypeScript
import { ApTitleProps } from '../ap-title/interface';
export type ApCardTitleProps = ApTitleProps & {
prefix?: any;
suffix?: any;
};
export interface ApCardProps {
titleProps?: ApCardTitleProps;
padding?: string;
}
export interface ApCardSlots {
default?: () => any;
titlePrefix?: () => any;
titleSuffix?: () => any;
}