]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/typings/utils.ts
Translated using Weblate (Romanian)
[github/Chocobozzz/PeerTube.git] / server / typings / utils.ts
index 1abb4f73e3a4747ee6930b648f21b005a5d8d9da..55500d8c455712419cbfc0fa4a1865e926130316 100644 (file)
@@ -1,3 +1,5 @@
+/* eslint-disable @typescript-eslint/array-type */
+
 export type FunctionPropertyNames<T> = {
   [K in keyof T]: T[K] extends Function ? K : never
 }[keyof T]
@@ -19,4 +21,4 @@ export type DeepPartial<T> = {
     : T[P] extends ReadonlyArray<infer U>
       ? ReadonlyArray<DeepPartial<U>>
       : DeepPartial<T[P]>
-};
+}