rapiq
Version:
A tiny library which provides utility types/functions for request and response query handling.
11 lines • 472 B
TypeScript
import { BaseError } from './base';
import type { BaseErrorOptions } from './types';
export declare class ParseError extends BaseError {
constructor(message?: string | BaseErrorOptions);
static inputInvalid(): ParseError;
static keyNotAllowed(name: string): ParseError;
static keyInvalid(key: string): ParseError;
static keyPathInvalid(key: string): ParseError;
static keyValueInvalid(key: string): ParseError;
}
//# sourceMappingURL=parse.d.ts.map