mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
72acf2309c
* refactor: port EventHistory to TS/SWR * refactor: fix interface type prefix * refactor: split useEvents and useFeatureEvents hooks Co-authored-by: Fredrik Strand Oseberg <fredrik.no@gmail.com>
15 lines
268 B
TypeScript
15 lines
268 B
TypeScript
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[];
|
|
}
|