import { TypeORMError } from 'typeorm'; /** * Thrown when consumer tries to get datasource that does not exist. */ export declare class DataSourceNotFoundError extends TypeORMError { constructor(name: string); } /** * Thrown when consumer tries to recreate datasource with the same name, but previous datasource was not closed yet. */ export declare class AlreadyHasActiveDataSourceError extends TypeORMError { constructor(DataSourceName: string); } //# sourceMappingURL=errors.d.ts.map