| 11 | |
| 12 | // TODO: move this type to src/context/create-function-complete.ts |
| 13 | interface FunctionCompleteArguments { |
| 14 | // biome-ignore lint/suspicious/noExplicitAny: TODO: could probably improve custom function parameter shapes - deno-slack-sdk has a bunch of this stuff we should move to slack/types |
| 15 | outputs?: Record<string, any>; |
| 16 | } |
| 17 | // TODO: move this type to src/context/create-function-complete.ts |
| 18 | export type FunctionCompleteFn = { |
| 19 | (params?: FunctionCompleteArguments): Promise<FunctionsCompleteSuccessResponse>; |
nothing calls this directly
no outgoing calls
no test coverage detected