UNPKG

@orca-fe/pdf-viewer

Version:
10 lines (9 loc) 355 B
import type { ContextMenuItemType } from '@orca-fe/pocket'; type MenuItemType = ContextMenuItemType & { order?: number; }; export interface PDFContextMenuPluginProps { menu?: MenuItemType[] | ((page: number) => MenuItemType[]); } declare const PDFContextMenuPlugin: (props: PDFContextMenuPluginProps) => null; export default PDFContextMenuPlugin;