]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/typings/utils.ts
Stronger actor association typing in AP functions
[github/Chocobozzz/PeerTube.git] / server / typings / utils.ts
1 export type FunctionPropertyNames<T> = { [K in keyof T]: T[K] extends Function ? K : never }[keyof T]
2
3 export type FunctionProperties<T> = Pick<T, FunctionPropertyNames<T>>