Skip to content
Snippets Groups Projects
Select Git revision
  • 8262eb5abbc0f7951a76c4d112e5fee91ee9a038
  • main default protected
2 results

types.ts

Blame
  • types.ts 653 B
    export type Show = {
      coreId: string;
      externalId: string;
      title: string;
      url: string;
      publisher: {
        coreId: string;
        dvbServiceId: number;
        title: string;
        url: string;
        organizationName: string;
        organization: {
          name: string;
          url: string;
        };
      };
      coreDocument: string;
    };
    
    export type Item = {
      assetId: string;
      url: string;
      title: string;
      description: string;
      published: string;
      updated: string;
      imagesList: { url: string; title: string }[];
      coreDocument: string;
      audioList: { title: string; audioCodec: string; href: string }[];
      show: Show;
    };
    
    export type Response = {
      item: Item;
    };