//#region src/core/interfaces/other/sync-logs.d.ts declare enum ErrorCode { CONFIG_ERROR = "CONFIG_ERROR", AUTHENTICATION_ERROR = "AUTHENTICATION_ERROR", API_ERROR = "API_ERROR", DATA_ERROR = "DATA_ERROR", THIRD_PARTY_ERROR = "THIRD_PARTY_ERROR", UNKNOWN_ERROR = "UNKNOWN_ERROR" } type Collection = 'courses' | 'teachers' | 'groups' | 'persons' | 'locations' | 'syllabuses'; interface SyncLog { status: 'success' | 'error'; message?: string; errorCode?: ErrorCode; createdAt: Date; divisionIds: string[]; imported?: Partial<{ [key in Collection]: number }>; } //#endregion export { ErrorCode, SyncLog }; //# sourceMappingURL=sync-logs.d.ts.map