//#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 };