UNPKG

249 BTypeScriptView Raw
1import ConnectionError from '../connection-error';
2/**
3 * Thrown when a connection to a database times out
4 */
5declare class ConnectionTimedOutError extends ConnectionError {
6 constructor(parent: Error);
7}
8export default ConnectionTimedOutError;