sparkletown/sparkle

View on GitHub
src/types/posters.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type Poster = {
  description?: string;
  descriptionSecondary?: string;
  introVideoUrl?: string;
  title: string;
  categories: string[];
  thumbnailUrl?: string;
  moreInfoUrl?: string;
  presenterName: string;
};