Skip to content

Commit

Permalink
feat: remove QueryPointResultType (see #1)
Browse files Browse the repository at this point in the history
  • Loading branch information
gajus committed Apr 10, 2017
1 parent dec6069 commit 81bf444
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/types.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,17 @@ export type DatabaseConnectionType = {
+query: QueryType
};

type QueryPointResultType = {|
+x: number,
+y: number
|};
// @see https://github.com/gajus/mightyql/issues/1
// type QueryPointResultType = {|
// +x: number,
// +y: number
// |};

export type QueryResultRowType = {
[key: string]: string | number | QueryPointResultType
[key: string]: string | number

// @see https://github.com/gajus/mightyql/issues/1
// | QueryPointResultType
};

type QueryPrimitiveValueType = string | number | null;
Expand Down

0 comments on commit 81bf444

Please sign in to comment.