API ClientsTypeScript SDKAPI ReferenceFunctional Programming (Technical Preview)Type AliasesFnKeys<C>Version: 8.9On this pageType Alias: FnKeys<C> Technical PreviewThe Functional Programming API is a technical preview. Its surface may change in future releases without following semver. type FnKeys<C> = { [K in keyof C]: C[K] extends (a: any) => any ? K : never;}[keyof C]; Type Parameters C CWas this helpful?