From 6111dc945517f663c391830252d2ace07093fbc3 Mon Sep 17 00:00:00 2001 From: goat <16760685+goaaats@users.noreply.github.com> Date: Tue, 7 Sep 2021 17:17:20 +0200 Subject: [PATCH] fix: add youtube timestamp to january types --- types/January.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/January.ts b/types/January.ts index 5198393..8681037 100644 --- a/types/January.ts +++ b/types/January.ts @@ -27,7 +27,7 @@ export type EmbedVideo = { */ export type EmbedSpecial = ( { type: 'None' } | - { type: 'YouTube', id: string } | + { type: 'YouTube', id: string, timestamp?: string } | { type: 'Twitch', content_type: 'Channel' | 'Video' | 'Clip', id: string } | { type: 'Spotify', content_type: string, id: string } | { type: 'Soundcloud' } |