15 lines
371 B
TypeScript
15 lines
371 B
TypeScript
import { DSQL_FieldSchemaType } from "../../types";
|
|
type Param = {
|
|
columnData: DSQL_FieldSchemaType;
|
|
primaryKeySet?: boolean;
|
|
};
|
|
type Return = {
|
|
fieldEntryText: string;
|
|
newPrimaryKeySet: boolean;
|
|
};
|
|
/**
|
|
* # Generate Table Column Description
|
|
*/
|
|
export default function generateColumnDescription({ columnData, primaryKeySet, }: Param): Return;
|
|
export {};
|