/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ export interface EventHandlerSchema { event: string; aggregate: string; parameters?: Parameter[]; imports?: Import[]; [k: string]: unknown; } export interface Parameter { name: string; type: string; graphqlType?: string; importPath?: string; isMember?: boolean; isExistingObject?: boolean; [k: string]: unknown; } export interface Import { path: string; imports: string[]; [k: string]: unknown; }