blob: 990375323e4cb3a6a7925f0c534d754370f9e9c0 [file] [log] [blame]
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;
}