mirror of
https://github.com/georgemandis/bubo-rss.git
synced 2025-04-21 16:30:35 +00:00
15 lines
278 B
TypeScript
15 lines
278 B
TypeScript
export interface Feeds {
|
|
[key: string]: object[]
|
|
}
|
|
export interface FeedItem {
|
|
[key: string]: string | number | Date | FeedItem[];
|
|
items: FeedItem[]
|
|
}
|
|
|
|
//NEW WAY
|
|
export type JSONValue =
|
|
| string
|
|
| number
|
|
| boolean
|
|
| { [x: string]: JSONValue }
|
|
| Array<JSONValue>; |