TwitchClone / src / types / content.d.ts
content.d.ts
Raw
export type CreateUploadInput = {
  endpoint: string;
  file: File;
  chunkSize: number;
};

export type MuxResponse = {
  id: string;
  url: string;
  playbackId: string;
  streamKey: string;
  // Add other properties if needed
};