Files
owncast/web/interfaces/external-action.ts
2022-04-28 14:36:05 -07:00

7 lines
110 B
TypeScript

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