11 lines
236 B
TypeScript
11 lines
236 B
TypeScript
|
export = sqlGenerator;
|
||
|
declare function sqlGenerator(Param0: {
|
||
|
genObject?: import("../../../types").ServerQueryParam;
|
||
|
tableName: string;
|
||
|
}):
|
||
|
| {
|
||
|
string: string;
|
||
|
values: string[];
|
||
|
}
|
||
|
| undefined;
|