1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-10 01:16:39 +02:00
unleash.unleash/frontend/src/interfaces/addons.ts
2022-02-01 07:17:23 +01:00

9 lines
160 B
TypeScript

export interface IAddons {
id: number;
provider: string;
description: string;
enabled: boolean;
events: string[];
parameters: object;
}