| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 | export type GetPageSizeInchesParameters = {    view: number[];    userUnit: number;    rotate: number;};export type PageSize = {    /**     * - In inches.     */    width: number;    /**     * - In inches.     */    height: number;};export type GetVisibleElementsParameters = {    /**     * - A container that can possibly scroll.     */    scrollEl: HTMLElement;    /**     * - Objects with a `div` property that contains an     * HTMLElement, which should all be descendants of `scrollEl` satisfying the     * relevant layout assumptions.     */    views: any[];    /**     * - If `true`, the returned elements are     * sorted in descending order of the percent of their padding box that is     * visible. The default value is `false`.     */    sortByVisibility: boolean;    /**     * - If `true`, the elements are assumed to be     * laid out horizontally instead of vertically. The default value is `false`.     */    horizontal: boolean;    /**     * - If `true`, the `scrollEl` container is assumed to     * be in right-to-left mode. The default value is `false`.     */    rtl: boolean;};/** * Promise that is resolved when DOM window becomes visible. */export const animationStarted: Promise<any>;/** * Converts API PageLayout values to the format used by `BaseViewer`. * NOTE: This is supported to the extent that the viewer implements the *       necessary Scroll/Spread modes (since SinglePage, TwoPageLeft, *       and TwoPageRight all suggests using non-continuous scrolling). * @param {string} mode - The API PageLayout value. * @returns {Object} */export function apiPageLayoutToViewerModes(layout: any): Object;/** * Converts API PageMode values to the format used by `PDFSidebar`. * NOTE: There's also a "FullScreen" parameter which is not possible to support, *       since the Fullscreen API used in browsers requires that entering *       fullscreen mode only occurs as a result of a user-initiated event. * @param {string} mode - The API PageMode value. * @returns {number} A value from {SidebarView}. */export function apiPageModeToSidebarView(mode: string): number;/** *  Approximates float number as a fraction using Farey sequence (max order *  of 8). *  @param {number} x - Positive float number. *  @returns {Array} Estimated fraction: the first array item is a numerator, *                   the second one is a denominator. */export function approximateFraction(x: number): any[];export const AutoPrintRegExp: RegExp;/** * Helper function for getVisibleElements. * * @param {number} index - initial guess at the first visible element * @param {Array} views - array of pages, into which `index` is an index * @param {number} top - the top of the scroll pane * @returns {number} less than or equal to `index` that is definitely at or *   before the first visible element in `views`, but not by too much. (Usually, *   this will be the first element in the first partially visible row in *   `views`, although sometimes it goes back one row further.) */export function backtrackBeforeAllVisibleElements(index: number, views: any[], top: number): number;/** * Use binary search to find the index of the first item in a given array which * passes a given condition. The items are expected to be sorted in the sense * that if the condition is true for one item in the array, then it is also true * for all following items. * * @returns {number} Index of the first array element to pass the test, *                   or |items.length| if no such element exists. */export function binarySearchFirstItem(items: any, condition: any, start?: number): number;export const DEFAULT_SCALE: 1;export const DEFAULT_SCALE_DELTA: 1.1;export const DEFAULT_SCALE_VALUE: "auto";export const docStyle: CSSStyleDeclaration | null;/** * Get the active or focused element in current DOM. * * Recursively search for the truly active or focused element in case there are * shadow DOMs. * * @returns {Element} the truly active or focused element. */export function getActiveOrFocusedElement(): Element;/** * @typedef {Object} GetPageSizeInchesParameters * @property {number[]} view * @property {number} userUnit * @property {number} rotate *//** * @typedef {Object} PageSize * @property {number} width - In inches. * @property {number} height - In inches. *//** * Gets the size of the specified page, converted from PDF units to inches. * @param {GetPageSizeInchesParameters} params * @returns {PageSize} */export function getPageSizeInches({ view, userUnit, rotate }: GetPageSizeInchesParameters): PageSize;/** * @typedef {Object} GetVisibleElementsParameters * @property {HTMLElement} scrollEl - A container that can possibly scroll. * @property {Array} views - Objects with a `div` property that contains an *   HTMLElement, which should all be descendants of `scrollEl` satisfying the *   relevant layout assumptions. * @property {boolean} sortByVisibility - If `true`, the returned elements are *   sorted in descending order of the percent of their padding box that is *   visible. The default value is `false`. * @property {boolean} horizontal - If `true`, the elements are assumed to be *   laid out horizontally instead of vertically. The default value is `false`. * @property {boolean} rtl - If `true`, the `scrollEl` container is assumed to *   be in right-to-left mode. The default value is `false`. *//** * Generic helper to find out what elements are visible within a scroll pane. * * Well, pretty generic. There are some assumptions placed on the elements * referenced by `views`: *   - If `horizontal`, no left of any earlier element is to the right of the *     left of any later element. *   - Otherwise, `views` can be split into contiguous rows where, within a row, *     no top of any element is below the bottom of any other element, and *     between rows, no bottom of any element in an earlier row is below the *     top of any element in a later row. * * (Here, top, left, etc. all refer to the padding edge of the element in * question. For pages, that ends up being equivalent to the bounding box of the * rendering canvas. Earlier and later refer to index in `views`, not page * layout.) * * @param {GetVisibleElementsParameters} * @returns {Object} `{ first, last, views: [{ id, x, y, view, percent }] }` */export function getVisibleElements({ scrollEl, views, sortByVisibility, horizontal, rtl, }: GetVisibleElementsParameters): Object;export function isPortraitOrientation(size: any): boolean;export function isValidRotation(angle: any): boolean;export function isValidScrollMode(mode: any): boolean;export function isValidSpreadMode(mode: any): boolean;export const MAX_AUTO_SCALE: 1.25;export const MAX_SCALE: 10;export const MIN_SCALE: 0.1;/** * Event handler to suppress context menu. */export function noContextMenuHandler(evt: any): void;export function normalizeWheelEventDelta(evt: any): number;export function normalizeWheelEventDirection(evt: any): number;/** * Scale factors for the canvas, necessary with HiDPI displays. */export class OutputScale {    /**     * @type {number} Horizontal scale.     */    sx: number;    /**     * @type {number} Vertical scale.     */    sy: number;    /**     * @type {boolean} Returns `true` when scaling is required, `false` otherwise.     */    get scaled(): boolean;}/** * Helper function to parse query string (e.g. ?param1=value¶m2=...). * @param {string} * @returns {Map} */export function parseQueryString(query: any): Map<any, any>;export namespace PresentationModeState {    const UNKNOWN: number;    const NORMAL: number;    const CHANGING: number;    const FULLSCREEN: number;}export class ProgressBar {    constructor(id: any);    set percent(arg: number);    get percent(): number;    setWidth(viewer: any): void;    hide(): void;    show(): void;    #private;}/** * @param {string} str * @param {boolean} [replaceInvisible] */export function removeNullCharacters(str: string, replaceInvisible?: boolean | undefined): string;export const RendererType: {    CANVAS: string;    SVG: string;} | null;export namespace RenderingStates {    const INITIAL: number;    const RUNNING: number;    const PAUSED: number;    const FINISHED: number;}export function roundToDivide(x: any, div: any): any;export const SCROLLBAR_PADDING: 40;/** * Scrolls specified element into view of its parent. * @param {Object} element - The element to be visible. * @param {Object} spot - An object with optional top and left properties, *   specifying the offset from the top left edge. * @param {boolean} [scrollMatches] - When scrolling search results into view, *   ignore elements that either: Contains marked content identifiers, *   or have the CSS-rule `overflow: hidden;` set. The default value is `false`. */export function scrollIntoView(element: Object, spot: Object, scrollMatches?: boolean | undefined): void;export namespace ScrollMode {    const UNKNOWN_1: number;    export { UNKNOWN_1 as UNKNOWN };    export const VERTICAL: number;    export const HORIZONTAL: number;    export const WRAPPED: number;    export const PAGE: number;}export namespace SidebarView {    const UNKNOWN_2: number;    export { UNKNOWN_2 as UNKNOWN };    export const NONE: number;    export const THUMBS: number;    export const OUTLINE: number;    export const ATTACHMENTS: number;    export const LAYERS: number;}export namespace SpreadMode {    const UNKNOWN_3: number;    export { UNKNOWN_3 as UNKNOWN };    const NONE_1: number;    export { NONE_1 as NONE };    export const ODD: number;    export const EVEN: number;}export namespace TextLayerMode {    const DISABLE: number;    const ENABLE: number;}export const UNKNOWN_SCALE: 0;export const VERTICAL_PADDING: 5;/** * Helper function to start monitoring the scroll event and converting them into * PDF.js friendly one: with scroll debounce and scroll direction. */export function watchScroll(viewAreaElement: any, callback: any): {    right: boolean;    down: boolean;    lastX: any;    lastY: any;    _eventHandler: (evt: any) => void;};
 |