mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-10 01:16:39 +02:00
9 lines
160 B
TypeScript
9 lines
160 B
TypeScript
export interface IAddons {
|
|
id: number;
|
|
provider: string;
|
|
description: string;
|
|
enabled: boolean;
|
|
events: string[];
|
|
parameters: object;
|
|
}
|