Skip to main content

ResolveResult TypeAlias

Result of resolving a pending batchId.

This API is provided for existing users, but is not recommended for new users.

To use, import via @fluidframework/container-runtime/legacy.

For more information about our API support guarantees, see here.

Signature

export type ResolveResult = {
readonly kind: "resolved";
readonly sequenceNumber: number;
} | {
readonly kind: "pending";
} | {
readonly kind: "unresolvable";
};