22 lines
389 B
TypeScript
22 lines
389 B
TypeScript
|
export interface Release {
|
||
|
creator: string;
|
||
|
title: string;
|
||
|
link: string;
|
||
|
pubDate: string;
|
||
|
author: string;
|
||
|
"content:encoded": string;
|
||
|
"content:encodedSnippet": string;
|
||
|
content: string;
|
||
|
contentSnippet: string;
|
||
|
guid: string;
|
||
|
isoDate: string;
|
||
|
}
|
||
|
|
||
|
export interface Releases {
|
||
|
items: Release[];
|
||
|
title: string;
|
||
|
description: string;
|
||
|
pubDate: string;
|
||
|
link: string;
|
||
|
}
|