Type alias BuilderExtension

BuilderExtension: Extension & {
    builder: {
        functions: (<Schema, Table, Ext>(s, t, e) => any);
        types: {
            boolean: any;
            date: any;
            numeric: any;
            string: any;
        };
    };
}

Type declaration

  • builder: {
        functions: (<Schema, Table, Ext>(s, t, e) => any);
        types: {
            boolean: any;
            date: any;
            numeric: any;
            string: any;
        };
    }
    • functions: (<Schema, Table, Ext>(s, t, e) => any)
    • types: {
          boolean: any;
          date: any;
          numeric: any;
          string: any;
      }
      • boolean: any
      • date: any
      • numeric: any
      • string: any

Generated using TypeDoc