cnf
2025-05-10 386fa0eca75ddc88165f9b73038f2a2239e1072e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
export class InkDrawingOptions extends DrawingOptions {
    constructor(viewerParameters: any);
    _viewParameters: any;
    clone(): InkDrawingOptions;
}
/**
 * Basic draw editor in order to generate an Ink annotation.
 */
export class InkEditor extends DrawingEditor {
    static _type: string;
    static _editorType: number;
    static _defaultDrawingOptions: null;
    /** @inheritdoc */
    static initialize(l10n: any, uiManager: any): void;
    /** @inheritdoc */
    static getDefaultDrawingOptions(options: any): any;
    /** @inheritdoc */
    static get typesMap(): any;
    /** @inheritdoc */
    static createDrawerInstance(x: any, y: any, parentWidth: any, parentHeight: any, rotation: any): InkDrawOutliner;
    /** @inheritdoc */
    static deserializeDraw(pageX: any, pageY: any, pageWidth: any, pageHeight: any, innerMargin: any, data: any): any;
    defaultL10nId: string;
    /** @inheritdoc */
    createDrawingOptions({ color, thickness, opacity }: {
        color: any;
        thickness: any;
        opacity: any;
    }): void;
    _drawingOptions: any;
    /** @inheritdoc */
    serialize(isForCopying?: boolean): Object | null;
    #private;
}
import { DrawingOptions } from "./draw.js";
import { DrawingEditor } from "./draw.js";
import { InkDrawOutliner } from "./drawers/inkdraw.js";