ff-admin/src/viewmodels/version.models.ts

22 lines
389 B
TypeScript
Raw Normal View History

2025-01-23 11:22:15 +01:00
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;
}