mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-09 14:18:02 -05:00
12 lines
254 B
TypeScript
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
|
|
}
|
|
}
|