Updates
This commit is contained in:
@@ -3,10 +3,19 @@
|
||||
import _ from "lodash";
|
||||
import serverError from "../../backend/serverError";
|
||||
import runQuery from "../../backend/db/runQuery";
|
||||
import { DSQL_TableSchemaType, GetReturn } from "../../../types";
|
||||
import {
|
||||
DSQL_TableSchemaType,
|
||||
GetReturn,
|
||||
ServerQueryParam,
|
||||
} from "../../../types";
|
||||
|
||||
type Param = {
|
||||
query: string;
|
||||
query:
|
||||
| string
|
||||
| {
|
||||
query: ServerQueryParam;
|
||||
table: string;
|
||||
};
|
||||
queryValues?: (string | number)[];
|
||||
dbFullName: string;
|
||||
tableName?: string;
|
||||
|
||||
Reference in New Issue
Block a user