15 lines
677 B
TypeScript
15 lines
677 B
TypeScript
import { DSQL_FieldSchemaType } from "../../types";
|
|
type Param = {
|
|
tableInfoArray: DSQL_FieldSchemaType[];
|
|
};
|
|
/**
|
|
* # Supplement Table
|
|
*/
|
|
export default function supplementTable({ tableInfoArray }: Param): DSQL_FieldSchemaType[];
|
|
export {};
|
|
/** ****************************************************************************** */
|
|
/** ****************************************************************************** */
|
|
/** ****************************************************************************** */
|
|
/** ****************************************************************************** */
|
|
/** ****************************************************************************** */
|