@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
19 lines (18 loc) • 1.2 kB
text/typescript
import { DraggablePanelBody, DraggablePanelBodyProps } from "./components/DraggablePanelBody.mjs";
import { DraggablePanelContainer, DraggablePanelContainerProps } from "./components/DraggablePanelContainer.mjs";
import { DraggablePanelFooter, DraggablePanelFooterProps } from "./components/DraggablePanelFooter.mjs";
import { DraggablePanelHeader, DraggablePanelHeaderProps } from "./components/DraggablePanelHeader.mjs";
import { DraggablePanelProps } from "./type.mjs";
import { ReactNode, RefAttributes } from "react";
//#region src/DraggablePanel/index.d.ts
interface IDraggablePanel {
(props: DraggablePanelProps & RefAttributes<HTMLDivElement>): ReactNode;
Body: typeof DraggablePanelBody;
Container: typeof DraggablePanelContainer;
Footer: typeof DraggablePanelFooter;
Header: typeof DraggablePanelHeader;
}
declare const DraggablePanel: IDraggablePanel;
//#endregion
export { DraggablePanelBody, type DraggablePanelBodyProps, DraggablePanelContainer, type DraggablePanelContainerProps, DraggablePanelFooter, type DraggablePanelFooterProps, DraggablePanelHeader, type DraggablePanelHeaderProps, DraggablePanelProps, DraggablePanel as default };
//# sourceMappingURL=index.d.mts.map