2022-09-15 19:35:04 +03:00

6 lines
101 B
TypeScript

import { IRssEntry } from './rss-entry';
export interface IRssData {
files: Array<IRssEntry>;
}