Files
owncast/web/interfaces/external-action.tsx
2022-04-27 23:19:45 -07:00

7 lines
110 B
TypeScript

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