1 | import type { TokenOverridable } from './common';
|
2 | interface ExecutionID {
|
3 | function_execution_id: string;
|
4 | }
|
5 | export interface FunctionsCompleteErrorArguments extends ExecutionID, TokenOverridable {
|
6 | error: string;
|
7 | }
|
8 | export interface FunctionsCompleteSuccessArguments extends ExecutionID, TokenOverridable {
|
9 | outputs: Record<string, unknown>;
|
10 | }
|
11 | export {};
|
12 | //# sourceMappingURL=functions.d.ts.map |
\ | No newline at end of file |