5 lines
100 B
TypeScript
Raw Normal View History

2023-11-13 00:09:12 +01:00
export interface Operation {
values: {id:any};
type: string;
operations?: Operation[];
}