rsshub
Version:
Make RSS Great Again!
27 lines (24 loc) • 512 B
text/typescript
export interface AnnouncementsConfig {
title: string;
description: string;
url: string;
imgUrl: string;
}
export interface AnnouncementCatalog {
articles: AnnouncementArticle[];
catalogId: number;
catalogName: string;
catalogType: 1;
catalogs: [];
description: null;
icon: string;
parentCatalogId: null;
total: number;
}
export interface AnnouncementArticle {
id: number;
code: string;
title: string;
type: number;
releaseDate: number;
}