owncast/web/interfaces/external-action.ts
2022-05-11 23:31:31 -07:00

8 lines
155 B
TypeScript

export interface ExternalAction {
title: string;
description?: string;
color?: string;
url: string;
icon?: string;
openExternally?: boolean;
}