UNPKG

pdfjs-dist

Version:

Generic build of Mozilla's PDF.js library.

23 lines (22 loc) 600 B
export type DrawLayerBuilderRenderOptions = { /** * - The default value is "display". */ intent?: string | undefined; }; /** * @typedef {Object} DrawLayerBuilderRenderOptions * @property {string} [intent] - The default value is "display". */ export class DrawLayerBuilder { /** * @param {DrawLayerBuilderRenderOptions} options * @returns {Promise<void>} */ render({ intent }: DrawLayerBuilderRenderOptions): Promise<void>; cancel(): void; _cancelled: boolean | undefined; setParent(parent: any): void; getDrawLayer(): null; #private; }