1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/interfaces/event.ts

15 lines
268 B
TypeScript
Raw Normal View History

import { ITag } from './tags';
export interface IEvent {
id: number;
createdAt: string;
type: string;
createdBy: string;
project?: string;
environment?: string;
featureName?: string;
data?: any;
preData?: any;
tags?: ITag[];
}