From e8633a3f4f223a79807abb1ab5c59cc600b5c7d5 Mon Sep 17 00:00:00 2001 From: Michael Heuberger Date: Fri, 1 Nov 2024 15:57:48 +1300 Subject: [PATCH] fix enum export --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index aeb71479..eca5849f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,6 +9,6 @@ export type { Videomail }; export type { VideomailEvents }; export type { PartialVideomailClientOptions }; export type { RecordingStats }; -export type { VideoTypes }; +export { VideoTypes }; export default VideomailClient;