sparkletown/sparkle

View on GitHub
src/types/screeningRoom.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type ScreeningRoomVideo = {
  title: string;
  category: string;
  authorName: string;
  thumbnailSrc: string;
  videoSrc: string;
  subCategory?: string;
  introduction?: string;
};