Compare commits
2 Commits
126c453c6c
...
7e972a39f9
Author | SHA1 | Date | |
---|---|---|---|
7e972a39f9 | |||
d19aec3371 |
2
index.ts
2
index.ts
@ -1,4 +1,4 @@
|
|||||||
export { MessageBroker, BrokerOptions } from './src/MessageBroker.js';
|
export { MessageBroker, BrokerOptions } from './src/MessageBroker.js';
|
||||||
export { MariaDB, MariaOptions } from './src/MariaDB.js';
|
export { MariaDB, MariaOptions } from './src/MariaDB.js';
|
||||||
export { MongoDB, MongoOptions } from './src/MongoDB.js';
|
export { MongoDB, MongoOptions } from './src/MongoDB.js';
|
||||||
export { ObjectId, Document, DeleteResult, Collection, Filter } from 'mongodb';
|
export { ObjectId, Document, DeleteResult, Collection, Filter, UpdateFilter } from 'mongodb';
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@navy.gif/wrappers",
|
"name": "@navy.gif/wrappers",
|
||||||
"version": "1.5.3",
|
"version": "1.5.4",
|
||||||
"description": "Various wrapper classes I use in my projects",
|
"description": "Various wrapper classes I use in my projects",
|
||||||
"repository": "https://git.corgi.wtf/Navy.gif/wrappers.git",
|
"repository": "https://git.corgi.wtf/Navy.gif/wrappers.git",
|
||||||
"author": "Navy.gif",
|
"author": "Navy.gif",
|
||||||
|
@ -36,7 +36,7 @@ type MariaError = {
|
|||||||
sqlMessage:string
|
sqlMessage:string
|
||||||
} & Error
|
} & Error
|
||||||
|
|
||||||
type Values = (string | number | (string | number)[] | (string | number)[][])[]
|
type Values = ((string | number | null | boolean) | (string | number | null | boolean)[] | (string | number | null | boolean)[][])[];
|
||||||
type QueryOptions = {
|
type QueryOptions = {
|
||||||
node?: string,
|
node?: string,
|
||||||
timeout?: number,
|
timeout?: number,
|
||||||
|
Loading…
Reference in New Issue
Block a user