Skip to content

Commit

Permalink
fix: types error and message
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Nov 19, 2024
1 parent d0233a0 commit db608e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/definitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -586,8 +586,8 @@ export interface ChannelRes {
* @since 4.7.0
*/
status: string;
error?: any;
message?: any;
error?: string;
message?: string;
}

export interface GetChannelRes {
Expand All @@ -597,8 +597,8 @@ export interface GetChannelRes {
* @since 4.8.0
*/
channel?: string;
error?: any;
message?: any;
error?: string;
message?: string;
status?: string;
allowSet?: boolean;
}
Expand Down

0 comments on commit db608e4

Please sign in to comment.