jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/node_modules/antd-mini/es/Collapse/props.d.ts

42 lines
748 B
TypeScript
Raw Normal View History

2024-11-10 07:01:22 +00:00
import { IBaseProps } from '../_base';
/**
* @description
*/
export interface ICollapseProps extends IBaseProps {
/**
* @description collapse
*/
onChange?: (current: number[] | undefined, e: Record<string, any>) => void;
/**
* @description
*/
/**
* @description
*/
current?: number[];
/**
* @description
*/
defaultCurrent?: number[];
/**
* @description accordion模式
*/
accordion?: boolean;
/**
* @description
*/
items: {
title?: string;
content?: string;
disabled?: boolean;
}[];
}
export declare const CollapseDefaultProps: Partial<ICollapseProps>;