|
@@ -709,11 +709,11 @@ interface GPU {
|
|
|
|
|
|
type GPUErrorFilter = "none" | "out-of-memory" | "validation";
|
|
|
|
|
|
-class GPUOutOfMemoryError {
|
|
|
+declare class GPUOutOfMemoryError {
|
|
|
constructor();
|
|
|
}
|
|
|
|
|
|
-class GPUValidationError {
|
|
|
+declare class GPUValidationError {
|
|
|
constructor(message: string);
|
|
|
readonly message: string;
|
|
|
}
|