UNPKG

firebase-admin-ql

Version:

A powerful library that bridges Firebase Admin SDK with PostgreSQL, simplifies interaction with stored procedures, facilitates seamless third-party API calls using fetch, and provides utility functions to streamline backend operations.

10 lines (9 loc) 297 B
import { Message } from "../utility"; import { Knex } from "knex"; export declare class PgDatabase { private db; private schema; constructor(schema: string, dbInstance: Knex); private procedureExists; runStoredMethod(methodName: string, parameters: any[]): Promise<Message>; }