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.
25 lines • 527 B
text/typescript
//#region src/namespaces/googleplay/common/types.d.ts
declare namespace GooglePlayNs {
type Image = {
href: string;
};
type Item = {
author?: string;
description?: string;
explicit?: boolean | 'clean';
block?: boolean;
image?: Image;
};
type Feed = {
author?: string;
description?: string;
explicit?: boolean | 'clean';
block?: boolean;
image?: Image;
newFeedUrl?: string;
email?: string;
categories?: Array<string>;
};
}
//#endregion
export { GooglePlayNs };