@light-sheet/react
Version:
FortuneSheet is a drop-in javascript spreadsheet library that provides rich features like Excel and Google Sheets
12 lines (11 loc) • 347 B
TypeScript
import React from "react";
import "./index.css";
type IRightPanelConfig = {
title?: string | React.ReactNode;
content?: React.ReactNode;
footer?: React.ReactNode;
width?: number;
onClose?: () => undefined | boolean | Promise<boolean> | void;
};
declare const RightPanel: React.FC<IRightPanelConfig>;
export default RightPanel;