9 lines
236 B
TypeScript
9 lines
236 B
TypeScript
declare function _exports({ columnData, primaryKeySet, }: {
|
|
columnData: import("../../types").DSQL_FieldSchemaType;
|
|
primaryKeySet?: boolean;
|
|
}): {
|
|
fieldEntryText: string;
|
|
newPrimaryKeySet: boolean;
|
|
};
|
|
export = _exports;
|