Type alias NoBuilderExtension

NoBuilderExtension: NoExtension & {
    builder: {
        functions: (<Schema, Table, Ext>(s, t, e) => {});
        types: {
            boolean: boolean;
            date: Date;
            numeric: number | ast.SqlBigInt;
            string: string;
        };
    };
}

Type declaration

  • builder: {
        functions: (<Schema, Table, Ext>(s, t, e) => {});
        types: {
            boolean: boolean;
            date: Date;
            numeric: number | ast.SqlBigInt;
            string: string;
        };
    }
    • functions: (<Schema, Table, Ext>(s, t, e) => {})
    • types: {
          boolean: boolean;
          date: Date;
          numeric: number | ast.SqlBigInt;
          string: string;
      }
      • boolean: boolean
      • date: Date
      • numeric: number | ast.SqlBigInt
      • string: string

Generated using TypeDoc