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 09:31:31 +03:00
icon?: string;
openExternally?: boolean;
}