minishouyin/node_modules/antd/lib/splitter/index.d.ts
2025-11-12 11:35:57 +08:00

9 lines
267 B
TypeScript

import Panel from './Panel';
import SplitterComp from './Splitter';
export type { SplitterProps } from './interface';
type CompoundedComponent = typeof SplitterComp & {
Panel: typeof Panel;
};
declare const Splitter: CompoundedComponent;
export default Splitter;