Created
September 3, 2019 15:48
-
-
Save merrickread/90d91af16591604b6a311b6c390d678d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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