Skip to content

Commit 25b9e34

Browse files
committed
Fix deno types
1 parent 971f5bc commit 25b9e34

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

templates/deno/src/query.ts.twig

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ export class Query {
5151
static greaterThanEqual = (attribute: string, value: QueryTypes): string =>
5252
new Query("greaterThanEqual", attribute, value).toString();
5353

54-
static isNull = (attribute: string): string => new Query("isNull", attribute);
54+
static isNull = (attribute: string): string =>
55+
new Query("isNull", attribute).toString();
5556

5657
static isNotNull = (attribute: string): string =>
5758
new Query("isNotNull", attribute).toString();
@@ -86,7 +87,8 @@ export class Query {
8687
static cursorBefore = (documentId: string): string =>
8788
new Query("cursorBefore", undefined, documentId).toString();
8889

89-
static limit = (limit: number): string => new Query("limit", undefined, limit).toString();
90+
static limit = (limit: number): string =>
91+
new Query("limit", undefined, limit).toString();
9092

9193
static offset = (offset: number): string =>
9294
new Query("offset", undefined, offset).toString();

0 commit comments

Comments
 (0)