Leon4gr45's picture
Include updated package-lock.json (part 9)
cd6720a verified
Raw
History Blame Contribute Delete
337 Bytes
declare type IsSupportedOptions = {
failIfMajorPerformanceCaveat: boolean;
}
declare type IsSupported = {
webGLContextAttributes: WebGLContextAttributes;
(
options?: IsSupportedOptions
): boolean;
};
export const supported: IsSupported;
export function notSupportedReason(options?: IsSupportedOptions): string;