File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed
Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11import { VideoType } from "./types/VideoType" ;
22
3+ export { VideomailClient } from "./client" ;
34export type { Command } from "./types/command" ;
45export type { VideomailCommandArgs } from "./types/command" ;
56export type { DeliveryRecord } from "./types/Delivery" ;
67export type { EmailAddress , EmailAddresses } from "./types/EmailAddress" ;
78export type { FullVideomailErrorData , VideomailErrorData } from "./types/error" ;
89export type { VideomailEvents , VideomailPreviewParams } from "./types/events" ;
910export type { VideomailClientOptions } from "./types/options" ;
10- export type RecordingStats = "./types/RecordingStats" ;
11- export { VideomailClient } from "./client" ;
11+ export type { RecordingStats } from "./types/RecordingStats" ;
1212export type { PartialVideomail , Videomail } from "./types/Videomail" ;
1313export type { VideoTypeType } from "./types/VideoType" ;
1414
Original file line number Diff line number Diff line change @@ -11,4 +11,4 @@ interface RecordingStats {
1111 wantedInterval ?: number ;
1212}
1313
14- export default RecordingStats ;
14+ export type { RecordingStats } ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { PartialDeep } from "type-fest";
22
33import { DeliveryRecord } from "./Delivery" ;
44import { EmailAddress , EmailAddresses } from "./EmailAddress" ;
5- import RecordingStats from "./RecordingStats" ;
5+ import { RecordingStats } from "./RecordingStats" ;
66import VideoFormat from "./VideoFormat" ;
77
88// Remember, only primitive types are supported.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import Response from "superagent/lib/node/response";
22
33import VideomailError from "../../util/error/VideomailError" ;
44import { FormReadyParams } from "../../wrappers/container" ;
5- import RecordingStats from "../RecordingStats" ;
5+ import { RecordingStats } from "../RecordingStats" ;
66import { Videomail } from "../Videomail" ;
77
88export interface UserMediaReadyParams {
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import Constants from "../../constants";
88import { Command , VideomailCommandArgs } from "../../types/command" ;
99import { UserMediaReadyParams } from "../../types/events" ;
1010import { VideomailClientOptions } from "../../types/options" ;
11- import RecordingStats from "../../types/RecordingStats" ;
11+ import { RecordingStats } from "../../types/RecordingStats" ;
1212import Despot from "../../util/Despot" ;
1313import createError from "../../util/error/createError" ;
1414import VideomailError from "../../util/error/VideomailError" ;
You can’t perform that action at this time.
0 commit comments