owncast/web/interfaces/external-action.ts

9 lines
155 B
TypeScript
Raw Normal View History

export interface ExternalAction {
title: string;
description?: string;
color?: string;
url: string;
2022-05-12 08:31:31 +02:00
icon?: string;
openExternally?: boolean;
}