mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 21:28:29 +03:00
8 lines
155 B
TypeScript
8 lines
155 B
TypeScript
export interface ExternalAction {
|
|
title: string;
|
|
description?: string;
|
|
color?: string;
|
|
url: string;
|
|
icon?: string;
|
|
openExternally?: boolean;
|
|
}
|