Skip to content

Commit

Permalink
Refactor: Remove export from unused type
Browse files Browse the repository at this point in the history
The type was exported but not used anywhere.
  • Loading branch information
splindsay-92 authored and AndyTWF committed Dec 16, 2024
1 parent 2aa18e9 commit fc021f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/chat-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ interface MessageOperationResponse {
timestamp: number;
}

export type UpdateMessageResponse = MessageOperationResponse;
type UpdateMessageResponse = MessageOperationResponse;

export type DeleteMessageResponse = MessageOperationResponse;
type DeleteMessageResponse = MessageOperationResponse;

interface UpdateMessageParams {
/**
Expand Down

0 comments on commit fc021f1

Please sign in to comment.