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.
19 lines (18 loc) • 391 B
TypeScript
export declare enum FindState {
FOUND = 0,
NOT_FOUND = 1,
WRAPPED = 2,
PENDING = 3
}
export interface FindResultMatchesCount {
current?: number;
total?: number;
matches?: Array<any>;
matchesLength?: Array<any>;
matchesColor?: Array<any>;
}
export interface FindResult {
state: FindState;
previous: any;
matchesCount: FindResultMatchesCount;
}