Spaces:
Sleeping
Sleeping
File size: 337 Bytes
cd6720a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | declare type IsSupportedOptions = {
failIfMajorPerformanceCaveat: boolean;
}
declare type IsSupported = {
webGLContextAttributes: WebGLContextAttributes;
(
options?: IsSupportedOptions
): boolean;
};
export const supported: IsSupported;
export function notSupportedReason(options?: IsSupportedOptions): string;
|