mirror of https://github.com/vladmandic/human
20 lines
470 B
TypeScript
20 lines
470 B
TypeScript
export declare const config: {
|
|
name: string;
|
|
priority: number;
|
|
canvas: null;
|
|
gl: null;
|
|
width: number;
|
|
height: number;
|
|
webGLattr: {
|
|
alpha: boolean;
|
|
antialias: boolean;
|
|
premultipliedAlpha: boolean;
|
|
preserveDrawingBuffer: boolean;
|
|
depth: boolean;
|
|
stencil: boolean;
|
|
failIfMajorPerformanceCaveat: boolean;
|
|
desynchronized: boolean;
|
|
};
|
|
};
|
|
export declare function register(): void;
|