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