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