]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/typescript-utils/types.ts
Lock when removing video files
[github/Chocobozzz/PeerTube.git] / shared / typescript-utils / types.ts
index bd2a97b98bfad55aa393b2f1f0100d5d47015d0d..57cc23f1fd622716ae62997db1e4dcd8eef832e1 100644 (file)
@@ -27,7 +27,7 @@ export type DeepPartial<T> = {
       : DeepPartial<T[P]>
 }
 
-type Primitive = string | Function | number | boolean | Symbol | undefined | null
+type Primitive = string | Function | number | boolean | symbol | undefined | null
 export type DeepOmitHelper<T, K extends keyof T> = {
   [P in K]: // extra level of indirection needed to trigger homomorhic behavior
   T[P] extends infer TP // distribute over unions