Files
pse.dev/types/shims-feed.d.ts
Kalidou Diagne 7b4084c4f7 feat: add basic tests (#542)
* feat: add basic tests
2025-08-11 12:36:12 +02:00

12 lines
254 B
TypeScript

declare module "feed" {
export class Feed {
constructor(options?: any)
addItem(item: any): void
addCategory(category: string): void
addContributor(contributor: any): void
atom1(): string
rss2(): string
json1(): string
}
}