12 lines
378 B
TypeScript
12 lines
378 B
TypeScript
import type { ServerQueryParamsJoin, ServerQueryParamsJoinMatchObject, SQLInsertGenValueType } from "../types";
|
|
type Param = {
|
|
mtch: ServerQueryParamsJoinMatchObject;
|
|
join: ServerQueryParamsJoin;
|
|
table_name: string;
|
|
};
|
|
export default function sqlGenGenJoinStr({ join, mtch, table_name }: Param): {
|
|
str: string;
|
|
values: SQLInsertGenValueType[];
|
|
};
|
|
export {};
|