UNPKG

@anoki/fse-common

Version:

Common types for FSE

14 lines (13 loc) 319 B
export type ApiErrorResponse = { correlationId?: string; errorCode?: string; errorMessage?: string; description?: string; validationErrors?: ValidationFieldError[]; datetime?: string; }; export type ValidationFieldError = { targetClass?: string; field?: string; message?: string; };