Skip to content

Commit

Permalink
fix: add missing op exports
Browse files Browse the repository at this point in the history
  • Loading branch information
KnorpelSenf authored Nov 9, 2024
1 parent c770f1a commit 7d48ebf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ export interface ReplayState {
receive: ReceiveOp[];
}
/** A send operation */
interface SendOp {
export interface SendOp {
/** Any string payload for the send operation */
payload: string;
}
/** A receive operation */
interface ReceiveOp {
export interface ReceiveOp {
/** The identifier (index in a send log) of a send op */
send: number;
/** The received value */
Expand Down

0 comments on commit 7d48ebf

Please sign in to comment.