From eb9677c374418384f1a96eba95153dc69ebfccc4 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Fri, 18 Nov 2016 04:37:10 +0100 Subject: sequence logging --- src/query.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/query.ts') diff --git a/src/query.ts b/src/query.ts index f8a6255b4..2c5a6002f 100644 --- a/src/query.ts +++ b/src/query.ts @@ -86,7 +86,7 @@ export let AbortTransaction = Symbol("abort_transaction"); * Get an unresolved promise together with its extracted resolve / reject * function. */ -function openPromise() { +export function openPromise() { let resolve: ((value?: T | PromiseLike) => void) | null = null; let reject: ((reason?: any) => void) | null = null; const promise = new Promise((res, rej) => { -- cgit v1.2.3