We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7edc781 commit a96aeedCopy full SHA for a96aeed
types/parameters.ts
@@ -2,6 +2,15 @@ import * as schemaTypes from '../src/proto/schema_pb';
2
import { USER_PERMISSION, USER_ACTION } from './user'
3
import * as interfaces from '../src/interfaces';
4
5
+export type SQLColumnValue = {
6
+ name: string,
7
+ type: string,
8
+ nullable: boolean,
9
+ index: string,
10
+ autoincrement: boolean,
11
+ unique: boolean,
12
+};
13
+
14
export type SQLValue = null | string | number | Uint8Array | boolean
15
type SQLParams = { [key: string]: SQLValue }
16
export namespace Parameters {
@@ -102,4 +111,4 @@ export namespace Parameters {
102
111
}
103
112
104
113
105
-export default Parameters
114
+export default Parameters
0 commit comments