11 lines
280 B
TypeScript
11 lines
280 B
TypeScript
type Param = {
|
|
query: string;
|
|
values?: string[] | object;
|
|
};
|
|
/**
|
|
* # Main DB Handler Function
|
|
* @requires DSQL_DB_CONN - Gobal Variable for Datasquirel Database
|
|
*/
|
|
export default function dbHandler({ query, values, }: Param): Promise<any[] | object | null>;
|
|
export {};
|