@peakpay/excalidraw
Version:
Excalidraw as a React component
12 lines (11 loc) • 420 B
TypeScript
import { NonDeletedExcalidrawElement } from "../element/types";
import { Device, UIAppState } from "../types";
import "./HintViewer.scss";
interface HintViewerProps {
appState: UIAppState;
elements: readonly NonDeletedExcalidrawElement[];
isMobile: boolean;
device: Device;
}
export declare const HintViewer: ({ appState, elements, isMobile, device, }: HintViewerProps) => JSX.Element | null;
export {};