File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed
Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change 11import * as schemaTypes from '../src/proto/schema_pb' ;
2- import { USER_PERMISSION , USER_ACTION } from './user'
2+ import { USER_PERMISSION , } from './user'
33import * as interfaces from '../src/interfaces' ;
44
5- export type SQLColumnValue = {
5+ export type SQLColumnDescription = {
66 name : string ,
77 type : string ,
88 nullable : boolean ,
@@ -11,6 +11,17 @@ export type SQLColumnValue = {
1111 unique : boolean ,
1212} ;
1313
14+ export type SQLTableDescription = {
15+ name : string ,
16+ } ;
17+
18+ interface IValue {
19+ prop : string
20+ }
21+ export interface SQLRowDescription {
22+ [ name : string ] : IValue ;
23+ }
24+
1425export type SQLValue = null | string | number | Uint8Array | boolean
1526type SQLParams = { [ key : string ] : SQLValue }
1627export namespace Parameters {
You can’t perform that action at this time.
0 commit comments