Skip to content

Commit 056b4a9

Browse files
committed
Change published type to String (not Date)
- Related issue: #124
1 parent be7339b commit 056b4a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export interface FeedEntry {
88
link?: string;
99
title?: string;
1010
description?: string;
11-
published?: Date;
11+
published?: string;
1212
}
1313

1414
export interface FeedData {
@@ -17,7 +17,7 @@ export interface FeedData {
1717
description?: string;
1818
generator?: string;
1919
language?: string;
20-
published?: Date;
20+
published?: string;
2121
entries?: Array<FeedEntry>;
2222
}
2323

0 commit comments

Comments
 (0)