// @flow import type { DictOf } from 'flow-helpers'; export type TableName = string export type FieldName = string export type FieldValue = | bool | number | string export type QueryValues = DictOf export type QueryCriteria = DictOf> export type QueryObj = { sql: string, args: Array }