typings fix

This commit is contained in:
Erik 2023-04-29 22:27:28 +03:00
parent f1279a8a73
commit 15dc7362af
Signed by: Navy.gif
GPG Key ID: 2532FBBB61C65A68

View File

@ -3,13 +3,13 @@ import { MongoClient, MongoClientOptions, Db, Document, WithId, ObjectId } from
import { IServer, ILogger, LoggerClientOptions } from "./interfaces/index.js";
type Credentials = {
URI: string,
user: string,
password: string,
host: string,
port: number,
URI?: string,
user?: string,
password?: string,
host?: string,
port?: number,
database: string,
authDb: string
authDb?: string
}
export type MongoOptions = {