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