Explorar el Código

Do not start a union type with |

Ondřej Španěl hace 5 años
padre
commit
f4f4e4819f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/polyfills.d.ts

+ 1 - 1
src/polyfills.d.ts

@@ -5,7 +5,7 @@ export function log( message?: any, ...optionalParams: any[] ): void;
 
 // typed array parameters
 export type TypedArray =
-	| Int8Array
+	Int8Array
 	| Uint8Array
 	| Uint8ClampedArray
 	| Int16Array