start on social links editing, wip

This commit is contained in:
gingervitis
2021-01-19 10:34:06 -08:00
committed by Gabe Kangas
parent 015f93ea56
commit d1cc0dfd97
11 changed files with 344 additions and 3 deletions

View File

@@ -45,6 +45,7 @@ export interface ConfigInstanceDetailsFields {
logo: string;
name: string;
nsfw: boolean;
socialHandles: SocialHandleItem[],
streamTitle: string;
summary: string;
tags: string[];
@@ -54,6 +55,12 @@ export interface ConfigInstanceDetailsFields {
export type PRESET = 'fast' | 'faster' | 'veryfast' | 'superfast' | 'ultrafast';
export interface SocialHandleItem {
icon: string;
platform: string;
key: string;
}
export interface VideoVariant {
key?: number; // unique identifier generated on client side just for ant table rendering
encoderPreset: PRESET,