mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboViteDocs.git
synced 2026-06-16 14:16:21 +00:00
Initalize
This commit is contained in:
17
node_modules/feed/lib/feed.d.ts
generated
vendored
Normal file
17
node_modules/feed/lib/feed.d.ts
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
import { Author, Extension, FeedOptions, Item } from "./typings";
|
||||
export { Author, Extension, FeedOptions, Item };
|
||||
export declare class Feed {
|
||||
options: FeedOptions;
|
||||
items: Item[];
|
||||
categories: string[];
|
||||
contributors: Author[];
|
||||
extensions: Extension[];
|
||||
constructor(options: FeedOptions);
|
||||
addItem: (item: Item) => number;
|
||||
addCategory: (category: string) => number;
|
||||
addContributor: (contributor: Author) => number;
|
||||
addExtension: (extension: Extension) => number;
|
||||
atom1: () => string;
|
||||
rss2: () => string;
|
||||
json1: () => string;
|
||||
}
|
||||
Reference in New Issue
Block a user