15 lines
389 B
TypeScript
15 lines
389 B
TypeScript
import type { CSSProperties } from 'react';
|
|
import React from 'react';
|
|
declare const WrapContent: React.FC<{
|
|
hasPageContainer?: number;
|
|
isChildrenLayout?: boolean;
|
|
prefixCls?: string;
|
|
style?: CSSProperties;
|
|
location?: any;
|
|
contentHeight?: number | string;
|
|
ErrorBoundary?: any;
|
|
children?: React.ReactNode;
|
|
hasHeader: boolean;
|
|
}>;
|
|
export { WrapContent };
|