mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
9 lines
155 B
TypeScript
9 lines
155 B
TypeScript
export interface ExternalAction {
|
|
title: string;
|
|
description?: string;
|
|
color?: string;
|
|
url: string;
|
|
icon?: string;
|
|
openExternally?: boolean;
|
|
}
|