mirror of
https://github.com/owncast/owncast.git
synced 2025-01-10 10:37:32 +03:00
7 lines
110 B
TypeScript
7 lines
110 B
TypeScript
|
export interface ExternalAction {
|
||
|
title: string;
|
||
|
description?: string;
|
||
|
color?: string;
|
||
|
url: string;
|
||
|
}
|