@fizzyflow/suisql
Version:
SuiSQL is a library and set of tools for working with decentralized SQL databases on the Sui blockchain and Walrus protocol.
22 lines (21 loc) • 495 B
TypeScript
import type SuiSql from "./SuiSql.js";
type SuiSqlFieldParams = {
suiSql: SuiSql;
cid: string | number;
name: string;
type: string;
notnull: boolean | number | string;
dfltValue?: null | string | undefined;
pk: boolean | number | string;
};
export default class SuiSqlField {
private suiSql;
private name;
private type;
private notnull;
private dfltValue?;
private pk;
private cid;
constructor(params: SuiSqlFieldParams);
}
export {};