Skip to content

Commit

Permalink
fix: Add missed type (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
tshashkova authored Sep 2, 2024
1 parent 6eca063 commit 31c9849
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/entities/continuation/session_continuation.entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { DialogPhrase, PreviousDialog } from './previous_dialog.entity';

export interface SessionContinuationProps {
previousDialog?: DialogPhrase[];
previousState?: string;
previousState?: string | Uint8Array;
}

export class SessionContinuation {
Expand Down

0 comments on commit 31c9849

Please sign in to comment.