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.

16 lines (15 loc) 302 B
export declare enum FindState { FOUND = 0, NOT_FOUND = 1, WRAPPED = 2, PENDING = 3 } export interface FindResultMatchesCount { current?: number; total?: number; } export interface FindResult { state: FindState; previous: any; matchesCount: FindResultMatchesCount; }