UNPKG

ngx-extended-pdf-viewer

Version:

Embedding PDF files in your Angular application. Highly configurable viewer including the toolbar, sidebar, and all the features you're used to.

17 lines (16 loc) 497 B
import { Subject } from 'rxjs'; export interface FindOptions { highlightAll?: boolean; matchCase?: boolean; wholeWords?: boolean; ignoreAccents?: boolean; findMultipleSearchTexts?: boolean; } export declare class NgxExtendedPdfViewerService { onPDFJSInit: Subject<void>; constructor(); findMultiple(text: Array<string>, options?: FindOptions): boolean; find(text: string, options?: FindOptions): boolean; findNext(): boolean; findPrevious(): boolean; }