Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
danylo-safonov-solid committed Sep 18, 2023
1 parent abaf4c6 commit f59ef27
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/src/client_common.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ typedef QueryArguments = Object;
class ClientCommon {
/// [postgres@v0.17.0/Transaction/queryArray](https://deno.land/x/postgres@v0.17.0/mod.ts?s=Transaction#method_queryArray_0).
/// [postgres@v0.17.0/QueryClient/queryArray](https://deno.land/x/postgres@v0.17.0/mod.ts?s=QueryClient#method_queryArray_0).
static Future<QueryArrayResult<T>> queryArray<T>(
static Future<QueryArrayResult<T>> queryArray<T extends List<dynamic>>(
Object queryable,
String query, [
QueryArguments? args,
Expand All @@ -19,11 +19,12 @@ class ClientCommon {

/// [postgres@v0.17.0/Transaction/queryArray](https://deno.land/x/postgres@v0.17.0/mod.ts?s=Transaction#method_queryArray_1).
/// [postgres@v0.17.0/QueryClient/queryArray](https://deno.land/x/postgres@v0.17.0/mod.ts?s=QueryClient#method_queryArray_1).
static Future<QueryArrayResult<T>> queryArrayWithOptions<T>(
static Future<QueryArrayResult<T>>
queryArrayWithOptions<T extends List<dynamic>>(
Object queryable,
QueryObjectOptions config,
) =>
throw UnimplementedError(); // TODO:
throw UnimplementedError(); // TODO:

// This one won't be implemented because it doesn't make much sense for dart,
// the query here is of type TemplateStringsArray which is used in
Expand Down

0 comments on commit f59ef27

Please sign in to comment.