Skip to content

Commit 92709bb

Browse files
NaetmulHyunje Jun
authored andcommitted
Fix the type of AudioMessage.duration from string to number (#60) (#61)
1 parent 2dfb7ea commit 92709bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ export type VideoMessage = {
149149
export type AudioMessage = {
150150
type: "audio";
151151
originalContentUrl: string;
152-
duration: string;
152+
duration: number;
153153
};
154154

155155
export type LocationMessage = {

0 commit comments

Comments
 (0)