postgrest-parser 0.2.0

PostgREST URL-to-SQL parser for Rust and WASM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 * Type-safe TypeScript definitions for PostgREST Parser
 *
 * This file provides strongly-typed interfaces that replace the `any` types
 * in the auto-generated wasm bindings, improving TypeScript developer experience.
 */
/**
 * Error thrown by the parser
 */
export class PostgRESTParserError extends Error {
    constructor(message, kind) {
        super(message);
        this.kind = kind;
        this.name = "PostgRESTParserError";
    }
}