UNPKG

254 BTypeScriptView Raw
1/**
2 * Thrown when user tries to build SELECT query using OFFSET without LIMIT applied but database does not support it.
3*/
4export declare class OffsetWithoutLimitNotSupportedError extends Error {
5 name: string;
6 constructor(driverName: string);
7}