Updates
This commit is contained in:
@@ -22,6 +22,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;
|
||||
|
||||
@@ -2722,3 +2723,18 @@ export type AIComponentProps = {
|
||||
targetAI: AIOptionsObject;
|
||||
context: any[];
|
||||
};
|
||||
|
||||
export type DsqlConnectionParam = {
|
||||
/**
|
||||
* No Database Connection
|
||||
*/
|
||||
noDb?: boolean;
|
||||
/**
|
||||
* Database Name
|
||||
*/
|
||||
database?: string;
|
||||
/**
|
||||
* Debug
|
||||
*/
|
||||
config?: ConnectionConfig;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user