Type alias SnapshotResult

SnapshotResult: {
    kind: "void";
} | {
    kind: "primitive";
    value: unknown;
} | {
    kind: "ref";
    ref: string;
}

Type declaration

  • kind: "void"

Type declaration

  • kind: "primitive"
  • value: unknown

Type declaration

  • kind: "ref"
  • ref: string

Description

Serialized call result stored in a snapshot file.