Update .gitignore, add dist directory
This commit is contained in:
Vendored
+15
@@ -0,0 +1,15 @@
|
||||
import type { BunMariaDBConfig, DBResponseObject } from "../types";
|
||||
type Param = {
|
||||
query: string;
|
||||
values?: any[];
|
||||
config?: BunMariaDBConfig;
|
||||
};
|
||||
/**
|
||||
* # Main DB Handler Function
|
||||
*/
|
||||
export default function dbHandler<T extends {
|
||||
[k: string]: any;
|
||||
} = {
|
||||
[k: string]: any;
|
||||
}>({ query, values, config }: Param): Promise<DBResponseObject<T>>;
|
||||
export {};
|
||||
Reference in New Issue
Block a user