aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/typings/utils.ts
blob: 55500d8c455712419cbfc0fa4a1865e926130316 (plain) (tree)
1
2
3
4
5
6
7
8

                                                  


                                                   

                                                                     
 






                                                     







                                                    
 
/* eslint-disable @typescript-eslint/array-type */

export type FunctionPropertyNames<T> = {
  [K in keyof T]: T[K] extends Function ? K : never
}[keyof T]

export type FunctionProperties<T> = Pick<T, FunctionPropertyNames<T>>

export type PickWith<T, KT extends keyof T, V> = {
  [P in KT]: T[P] extends V ? V : never
}

export type PickWithOpt<T, KT extends keyof T, V> = {
  [P in KT]?: T[P] extends V ? V : never
}

// https://github.com/krzkaczor/ts-essentials Rocks!
export type DeepPartial<T> = {
  [P in keyof T]?: T[P] extends Array<infer U>
    ? Array<DeepPartial<U>>
    : T[P] extends ReadonlyArray<infer U>
      ? ReadonlyArray<DeepPartial<U>>
      : DeepPartial<T[P]>
}