Skip to content

Instantly share code, notes, and snippets.

@merrickread
Created September 3, 2019 15:48
Show Gist options
  • Save merrickread/90d91af16591604b6a311b6c390d678d to your computer and use it in GitHub Desktop.
Save merrickread/90d91af16591604b6a311b6c390d678d to your computer and use it in GitHub Desktop.
export type Video = {
id: number,
title: string,
description: string,
categories: number[],
keywords: string[],
live: boolean,
metadata: {
[name: string]: string
},
language: string,
createdAt: Date | null,
modifiedAt: Date | null,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment