UNPKG

@effectai/sdk

Version:

Effect Network Javscript/Typescript SDK (for [https://effect.network](https://effect.network))

8 lines (7 loc) 255 B
import type { Client } from "../../../client"; import type { Batch } from "../../../exports"; export type GetBatchByIdArgs = { client: Client; id: number; }; export declare const getBatchById: ({ client, id }: GetBatchByIdArgs) => Promise<Batch>;