Initial project import

This commit is contained in:
drjones
2026-06-13 17:36:44 -07:00
commit ad2a18cc8d
18471 changed files with 4497570 additions and 0 deletions

View File

@@ -0,0 +1 @@
export declare const BLOCKLISTED_GPUS: string[];

View File

@@ -0,0 +1 @@
export declare function cleanRenderer(renderer: string): string;

View File

@@ -0,0 +1 @@
export declare function deobfuscateAppleGPU(gl: WebGLRenderingContext, renderer: string, isMobileTier: boolean): string[];

View File

@@ -0,0 +1 @@
export declare function deobfuscateRenderer(gl: WebGLRenderingContext | WebGL2RenderingContext, renderer: string, isMobileTier: boolean): string[];

View File

@@ -0,0 +1,6 @@
export declare const deviceInfo: {
isIpad: boolean;
isMobile: boolean;
isSafari12: boolean;
isFirefox: boolean;
} | undefined;

3
node_modules/detect-gpu/dist/src/internal/error.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
export declare class OutdatedBenchmarksError extends Error {
constructor(message?: string);
}

View File

@@ -0,0 +1 @@
export declare function getGPUVersion(model: string): string;

View File

@@ -0,0 +1,2 @@
export declare function getLevenshteinDistance(left: string, right: string): number;
export declare function tokenizeForLevenshteinDistance(str: string): string;

View File

@@ -0,0 +1 @@
export declare function getWebGLContext(isSafari12?: boolean, failIfMajorPerformanceCaveat?: boolean): WebGLRenderingContext | undefined;

1
node_modules/detect-gpu/dist/src/internal/ssr.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export declare const isSSR: boolean;

1
node_modules/detect-gpu/dist/src/internal/util.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export declare function isDefined<T>(val: T | undefined | null | void): val is T;