(schema: string | undefined, table: string | undefined)
| 104 | |
| 105 | /** Get combined schema.table name */ |
| 106 | export function qNameJoin(schema: string | undefined, table: string | undefined) { |
| 107 | return !!schema ? schema + "." + table : table as string; |
| 108 | } |
| 109 | |
| 110 | /** Language of output model files */ |
| 111 | export declare type LangOption = "es5" | "es6" | "esm" | "ts"; |
no outgoing calls
no test coverage detected