Files

25 lines
603 B
TypeScript
Raw Permalink Normal View History

2025-08-18 09:11:51 +08:00
import { IBaseProps } from '../_util/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: IContainerProps;