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
| export class Autolinker {
| static "__#73@#index": number;
| static "__#73@#regex": any;
| static findLinks(text: any): {
| url: string;
| index: any;
| length: any;
| }[];
| static processLinks(pdfPageView: any): ({
| borderStyle: null;
| rect: any;
| quadPoints?: undefined;
| id: string;
| unsafeUrl: any;
| url: any;
| annotationType: number;
| rotation: number;
| } | {
| borderStyle: null;
| quadPoints: any[];
| rect: number[];
| id: string;
| unsafeUrl: any;
| url: any;
| annotationType: number;
| rotation: number;
| })[];
| }
|
|