export function blobReplicateProvider(context: API.BlobServiceContext): API.ServiceMethod; /** * Retrieves details of effect chain for replica allocations. * * If the allocation failed (receipt in error) then the return value will not * include any details about the transfer. i.e. `transfer` will be `undefined`. * * If the receipt for `blob/replica/transfer` was not yet received, it will not * be included in the return value. i.e. `transfer.receipt` will be `undefined`. */ export type ReplicaFxDetail = { allocate: { task: API.Invocation; receipt: API.Receipt; }; transfer?: { task: API.Invocation; receipt?: API.Receipt; }; }; import * as API from '../types.js'; //# sourceMappingURL=replicate.d.ts.map