pdfjs-dist
Version:
Generic build of Mozilla's PDF.js library.
21 lines (20 loc) • 519 B
TypeScript
export class WebGLContext {
constructor({ enable }: {
enable?: boolean | undefined;
});
_enabled: boolean;
get isEnabled(): any;
composeSMask({ layer, mask, properties }: {
layer: any;
mask: any;
properties: any;
}): any;
drawFigures({ width, height, backgroundColor, figures, context }: {
width: any;
height: any;
backgroundColor: any;
figures: any;
context: any;
}): any;
clear(): void;
}