Skip to content

Commit 2dc31bc

Browse files
committed
Avoid default exports for types
1 parent 146505e commit 2dc31bc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ interface DeliveryReport {
66

77
type DeliveryRecord = Record<EmailAddress, DeliveryReport>;
88

9-
export default DeliveryRecord;
9+
export type { DeliveryRecord };

src/types/Videomail.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { PartialDeep } from "type-fest";
22

3-
import DeliveryRecord from "./DeliveryRecord";
3+
import { DeliveryRecord } from "./Delivery";
44
import { EmailAddress, EmailAddresses } from "./EmailAddress";
55
import RecordingStats from "./RecordingStats";
66
import VideoFormat from "./VideoFormat";

0 commit comments

Comments
 (0)