@pdfme/ui
Version:
TypeScript base PDF generator and React base UI. Open source, developed by the community, and completely free to use under the MIT license!
11 lines (10 loc) • 383 B
TypeScript
import React from 'react';
import { OnSelect as SelectoOnSelect, OnDragStart as SelectoOnDragStart } from 'react-selecto';
type Props = {
container: HTMLElement | null;
continueSelect: boolean;
onDragStart: (e: SelectoOnDragStart) => void;
onSelect: (e: SelectoOnSelect) => void;
};
declare const Selecto: (props: Props) => React.JSX.Element;
export default Selecto;