| 48 | } |
| 49 | |
| 50 | interface Meta { |
| 51 | "#ns": Array<{ [key: string]: string }>; |
| 52 | "#type": Type; |
| 53 | "#version": string; |
| 54 | "@": { [key: string]: any }; |
| 55 | title: string; |
| 56 | description: string; |
| 57 | date: Date | null; |
| 58 | pubdate: Date | null; |
| 59 | link: string; |
| 60 | xmlurl: string; |
| 61 | author: string; |
| 62 | language: string; |
| 63 | image: Image; |
| 64 | favicon: string; |
| 65 | copyright: string; |
| 66 | generator: string; |
| 67 | categories: string[]; |
| 68 | [key: string]: any; |
| 69 | } |
| 70 | |
| 71 | interface Enclosure { |
| 72 | url: string; |
nothing calls this directly
no outgoing calls
no test coverage detected