Files
core/src/modules/aggregate/aggregate.interface.ts
2022-03-27 18:25:23 +08:00

13 lines
196 B
TypeScript

export interface RSSProps {
title: string
url: string
author: string
data: {
created: Date | null
modified: Date | null
link: string
title: string
text: string
}[]
}