mirror of
https://github.com/mgerb/go-discord-bot
synced 2026-01-10 09:02:49 +00:00
14 lines
257 B
TypeScript
14 lines
257 B
TypeScript
export interface IVideoArchive {
|
|
author: string;
|
|
created_at: string;
|
|
date_published: string;
|
|
description: string;
|
|
duration: number;
|
|
id: number;
|
|
title: string;
|
|
updated_at: string;
|
|
uploaded_by: string;
|
|
url: string;
|
|
youtube_id: string;
|
|
}
|