Parcourir la source

Merge pull request #18173 from OndrejSpanel/prPolyfillUnion

Do not start a union type with |
Michael Herzog il y a 5 ans
Parent
commit
99b8caf90f
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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