summaryrefslogtreecommitdiff
path: root/source/github-helpers/api.ts
diff options
context:
space:
mode:
authorGravatar Federico Brigante <me@fregante.com> 2023-05-11 05:28:40 +0800
committerGravatar GitHub <noreply@github.com> 2023-05-10 21:28:40 +0000
commit48658675d7bbb3ecd5e3a51df0447b65bb0b1219 (patch)
treed70832506df4326c612f721b1c6c496513db0eac /source/github-helpers/api.ts
parent358edc207f72fb01a32c916c28b90839359c662a (diff)
downloadrefined-github-0b79211aa9a9c39b16526ab85bf6ab319f8ae5c1.tar.gz
refined-github-0b79211aa9a9c39b16526ab85bf6ab319f8ae5c1.tar.zst
refined-github-0b79211aa9a9c39b16526ab85bf6ab319f8ae5c1.zip
Improve reliability of `list-prs-for-branch` (#6641)23.5.10
Diffstat (limited to 'source/github-helpers/api.ts')
-rw-r--r--source/github-helpers/api.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/github-helpers/api.ts b/source/github-helpers/api.ts
index d0fd1043..5aaf5e4a 100644
--- a/source/github-helpers/api.ts
+++ b/source/github-helpers/api.ts
@@ -248,3 +248,6 @@ export async function getError(apiResponse: JsonObject): Promise<RefinedGitHubAP
error.response = apiResponse;
return error;
}
+
+// Export single API object as default
+export * as default from './api.js';