feedsmith
Version:
Fast, all‑in‑one feed parser and generator for RSS, Atom, RDF, and JSON Feed, with support for Podcast, iTunes, Dublin Core, and OPML files.
29 lines • 557 B
text/typescript
//#region src/namespaces/acast/common/types.d.ts
declare namespace AcastNs {
type Signature = {
key?: string;
algorithm?: string;
value?: string;
};
type Network = {
id?: string;
slug?: string;
value?: string;
};
type Feed = {
showId?: string;
showUrl?: string;
signature?: Signature;
settings?: string;
network?: Network;
importedFeed?: string;
};
type Item = {
episodeId?: string;
showId?: string;
episodeUrl?: string;
settings?: string;
};
}
//#endregion
export { AcastNs };