workflow
Version:
Workflow DevKit - Build durable, resilient, and observable workflows
9 lines • 582 B
TypeScript
/**
* These are the built-in steps that are "automatically available" in the workflow scope. They are
* similar to "stdlib" except that are not meant to be imported by users, but are instead "just available"
* alongside user defined steps. They are used internally by the runtime
*/
export declare function __builtin_response_array_buffer(res: Response): Promise<ArrayBuffer>;
export declare function __builtin_response_json(res: Response): Promise<unknown>;
export declare function __builtin_response_text(res: Response): Promise<string>;
//# sourceMappingURL=builtins.d.ts.map