UNPKG

@jealous-robot-dev/shared-types-databases

Version:

13 lines (12 loc) 310 B
import { DataStandartModel } from "../common"; export interface InternalError { id: string; firstOccuredAt: number; timesOccured: number; message: string; field: string; lang: string; service: string; } export interface DBMInternalError extends DataStandartModel, InternalError { }