Files
copilot-toolbox-template-123/node_modules/@ant-design/pro-layout/es/WrapContent.d.ts
2026-01-09 14:52:46 +00:00

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 };