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.
32 lines • 569 B
TypeScript
//#region src/namespaces/spotify/common/types.d.ts
declare namespace SpotifyNs {
type Limit = {
recentCount?: number;
};
type Partner = {
id: string;
};
type Sandbox = {
enabled: boolean;
};
type FeedAccess = {
partner?: Partner;
sandbox?: Sandbox;
};
type Entitlement = {
name: string;
};
type ItemAccess = {
entitlement?: Entitlement;
};
type Feed = {
limit?: Limit;
countryOfOrigin?: string;
access?: FeedAccess;
};
type Item = {
access?: ItemAccess;
};
}
//#endregion
export { SpotifyNs };