7 lines
110 B
TypeScript
7 lines
110 B
TypeScript
export interface ExternalAction {
|
|
title: string;
|
|
description?: string;
|
|
color?: string;
|
|
url: string;
|
|
}
|