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.
14 lines (13 loc) • 380 B
TypeScript
export declare function generateOTP(num: number): string;
export type Message = {
status: "success" | "error";
message: string;
data?: object;
};
export declare class PgFormData {
private data;
private order;
constructor(data: object, order: string[]);
get values(): Array<any>;
}
export declare function formatAsMoney(input: number | string): string;