Updates
This commit is contained in:
Vendored
+15
@@ -5,6 +5,7 @@ import type sharp from "sharp";
|
||||
import type DataTypes from "../data/data-types";
|
||||
import type { IncomingMessage, ServerResponse } from "http";
|
||||
import type { CookieNames } from "../dict/cookie-names";
|
||||
import { ConnectionConfig } from "mariadb";
|
||||
export type DSQL_DatabaseFullName = string;
|
||||
export type DSQL_DATASQUIREL_USER_BACKUPS_JOIN = DSQL_DATASQUIREL_BACKUPS & {
|
||||
[k in (typeof UserSelectFields)[number]["alias"]]?: string;
|
||||
@@ -2085,4 +2086,18 @@ export type AIComponentProps = {
|
||||
targetAI: AIOptionsObject;
|
||||
context: any[];
|
||||
};
|
||||
export type DsqlConnectionParam = {
|
||||
/**
|
||||
* No Database Connection
|
||||
*/
|
||||
noDb?: boolean;
|
||||
/**
|
||||
* Database Name
|
||||
*/
|
||||
database?: string;
|
||||
/**
|
||||
* Debug
|
||||
*/
|
||||
config?: ConnectionConfig;
|
||||
};
|
||||
export {};
|
||||
|
||||
Reference in New Issue
Block a user