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

27 lines
639 B
TypeScript
Raw Normal View History

2024-11-10 07:01:22 +00:00
/* eslint-disable @typescript-eslint/no-explicit-any */
import { IBaseProps, IconType } from '../_base';
/**
* @description 使 title
*/
export interface IContainerProps extends IBaseProps {
/**
* @description
*/
title?: string;
/**
* @description
* @default true
*/
headerInBox: boolean;
/**
* @description
*/
className?: string;
/**
* @description
*/
style?: string;
}
export declare const ContainerDefaultProps: Partial<IContainerProps>;