123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- export type ExternalLinkParameters = any;
- export type PageViewportParameters = {
- /**
- * - The xMin, yMin, xMax and
- * yMax coordinates.
- */
- viewBox: Array<number>;
- /**
- * - The scale of the viewport.
- */
- scale: number;
- /**
- * - The rotation, in degrees, of the viewport.
- */
- rotation: number;
- /**
- * - The horizontal, i.e. x-axis, offset. The
- * default value is `0`.
- */
- offsetX?: number | undefined;
- /**
- * - The vertical, i.e. y-axis, offset. The
- * default value is `0`.
- */
- offsetY?: number | undefined;
- /**
- * - If true, the y-axis will not be flipped.
- * The default value is `false`.
- */
- dontFlip?: boolean | undefined;
- };
- export type PageViewportCloneParameters = {
- /**
- * - The scale, overriding the one in the cloned
- * viewport. The default value is `this.scale`.
- */
- scale?: number | undefined;
- /**
- * - The rotation, in degrees, overriding the one
- * in the cloned viewport. The default value is `this.rotation`.
- */
- rotation?: number | undefined;
- /**
- * - The horizontal, i.e. x-axis, offset.
- * The default value is `this.offsetX`.
- */
- offsetX?: number | undefined;
- /**
- * - The vertical, i.e. y-axis, offset.
- * The default value is `this.offsetY`.
- */
- offsetY?: number | undefined;
- /**
- * - If true, the x-axis will not be flipped.
- * The default value is `false`.
- */
- dontFlip?: boolean | undefined;
- };
- /**
- * @typedef ExternalLinkParameters
- * @typedef {Object} ExternalLinkParameters
- * @property {string} url - An absolute URL.
- * @property {LinkTarget} [target] - The link target. The default value is
- * `LinkTarget.NONE`.
- * @property {string} [rel] - The link relationship. The default value is
- * `DEFAULT_LINK_REL`.
- * @property {boolean} [enabled] - Whether the link should be enabled. The
- * default value is true.
- */
- /**
- * Adds various attributes (href, title, target, rel) to hyperlinks.
- * @param {HTMLLinkElement} link - The link element.
- * @param {ExternalLinkParameters} params
- */
- export function addLinkAttributes(link: HTMLLinkElement, { url, target, rel, enabled }?: any): void;
- export class BaseCanvasFactory {
- create(width: any, height: any): void;
- reset(canvasAndContext: any, width: any, height: any): void;
- destroy(canvasAndContext: any): void;
- }
- export class BaseCMapReaderFactory {
- constructor({ baseUrl, isCompressed }: {
- baseUrl?: any;
- isCompressed?: boolean | undefined;
- });
- baseUrl: any;
- isCompressed: boolean;
- fetch({ name }: {
- name: any;
- }): Promise<any>;
- /**
- * @private
- */
- private _fetchData;
- }
- export const DEFAULT_LINK_REL: "noopener noreferrer nofollow";
- export function deprecated(details: any): void;
- export class DOMCanvasFactory extends BaseCanvasFactory {
- constructor({ ownerDocument }?: {
- ownerDocument?: Document | undefined;
- });
- _document: Document;
- }
- export class DOMCMapReaderFactory extends BaseCMapReaderFactory {
- }
- export class DOMSVGFactory {
- create(width: any, height: any): SVGElement;
- createElement(type: any): any;
- }
- /**
- * Gets the filename from a given URL.
- * @param {string} url
- * @returns {string}
- */
- export function getFilenameFromUrl(url: string): string;
- /**
- * Returns the filename or guessed filename from the url (see issue 3455).
- * @param {string} url - The original PDF location.
- * @param {string} defaultFilename - The value returned if the filename is
- * unknown, or the protocol is unsupported.
- * @returns {string} Guessed PDF filename.
- */
- export function getPdfFilenameFromUrl(url: string, defaultFilename?: string): string;
- export function isDataScheme(url: any): boolean;
- export function isFetchSupported(): boolean;
- export function isPdfFile(filename: any): boolean;
- export function isValidFetchUrl(url: any, baseUrl: any): boolean;
- export namespace LinkTarget {
- const NONE: number;
- const SELF: number;
- const BLANK: number;
- const PARENT: number;
- const TOP: number;
- }
- /**
- * @param {string} src
- * @param {boolean} [removeScriptElement]
- * @returns {Promise<void>}
- */
- export function loadScript(src: string, removeScriptElement?: boolean | undefined): Promise<void>;
- /**
- * @typedef {Object} PageViewportParameters
- * @property {Array<number>} viewBox - The xMin, yMin, xMax and
- * yMax coordinates.
- * @property {number} scale - The scale of the viewport.
- * @property {number} rotation - The rotation, in degrees, of the viewport.
- * @property {number} [offsetX] - The horizontal, i.e. x-axis, offset. The
- * default value is `0`.
- * @property {number} [offsetY] - The vertical, i.e. y-axis, offset. The
- * default value is `0`.
- * @property {boolean} [dontFlip] - If true, the y-axis will not be flipped.
- * The default value is `false`.
- */
- /**
- * @typedef {Object} PageViewportCloneParameters
- * @property {number} [scale] - The scale, overriding the one in the cloned
- * viewport. The default value is `this.scale`.
- * @property {number} [rotation] - The rotation, in degrees, overriding the one
- * in the cloned viewport. The default value is `this.rotation`.
- * @property {number} [offsetX] - The horizontal, i.e. x-axis, offset.
- * The default value is `this.offsetX`.
- * @property {number} [offsetY] - The vertical, i.e. y-axis, offset.
- * The default value is `this.offsetY`.
- * @property {boolean} [dontFlip] - If true, the x-axis will not be flipped.
- * The default value is `false`.
- */
- /**
- * PDF page viewport created based on scale, rotation and offset.
- */
- export class PageViewport {
- /**
- * @param {PageViewportParameters}
- */
- constructor({ viewBox, scale, rotation, offsetX, offsetY, dontFlip, }: PageViewportParameters);
- viewBox: number[];
- scale: number;
- rotation: number;
- offsetX: number;
- offsetY: number;
- transform: number[];
- width: number;
- height: number;
- /**
- * Clones viewport, with optional additional properties.
- * @param {PageViewportCloneParameters} [params]
- * @returns {PageViewport} Cloned viewport.
- */
- clone({ scale, rotation, offsetX, offsetY, dontFlip, }?: PageViewportCloneParameters | undefined): PageViewport;
- /**
- * Converts PDF point to the viewport coordinates. For examples, useful for
- * converting PDF location into canvas pixel coordinates.
- * @param {number} x - The x-coordinate.
- * @param {number} y - The y-coordinate.
- * @returns {Object} Object containing `x` and `y` properties of the
- * point in the viewport coordinate space.
- * @see {@link convertToPdfPoint}
- * @see {@link convertToViewportRectangle}
- */
- convertToViewportPoint(x: number, y: number): Object;
- /**
- * Converts PDF rectangle to the viewport coordinates.
- * @param {Array} rect - The xMin, yMin, xMax and yMax coordinates.
- * @returns {Array} Array containing corresponding coordinates of the
- * rectangle in the viewport coordinate space.
- * @see {@link convertToViewportPoint}
- */
- convertToViewportRectangle(rect: any[]): any[];
- /**
- * Converts viewport coordinates to the PDF location. For examples, useful
- * for converting canvas pixel location into PDF one.
- * @param {number} x - The x-coordinate.
- * @param {number} y - The y-coordinate.
- * @returns {Object} Object containing `x` and `y` properties of the
- * point in the PDF coordinate space.
- * @see {@link convertToViewportPoint}
- */
- convertToPdfPoint(x: number, y: number): Object;
- }
- export class PDFDateString {
- /**
- * Convert a PDF date string to a JavaScript `Date` object.
- *
- * The PDF date string format is described in section 7.9.4 of the official
- * PDF 32000-1:2008 specification. However, in the PDF 1.7 reference (sixth
- * edition) Adobe describes the same format including a trailing apostrophe.
- * This syntax in incorrect, but Adobe Acrobat creates PDF files that contain
- * them. We ignore all apostrophes as they are not necessary for date parsing.
- *
- * Moreover, Adobe Acrobat doesn't handle changing the date to universal time
- * and doesn't use the user's time zone (effectively ignoring the HH' and mm'
- * parts of the date string).
- *
- * @param {string} input
- * @returns {Date|null}
- */
- static toDateObject(input: string): Date | null;
- }
- declare const RenderingCancelledException_base: any;
- export class RenderingCancelledException extends RenderingCancelledException_base {
- [x: string]: any;
- constructor(msg: any, type: any);
- type: any;
- }
- export class StatTimer {
- started: any;
- times: any[];
- time(name: any): void;
- timeEnd(name: any): void;
- toString(): string;
- }
- export {};
|