diff options
author | 2023-05-11 05:28:40 +0800 | |
---|---|---|
committer | 2023-05-10 21:28:40 +0000 | |
commit | 48658675d7bbb3ecd5e3a51df0447b65bb0b1219 (patch) | |
tree | d70832506df4326c612f721b1c6c496513db0eac /source/github-helpers/api.ts | |
parent | 358edc207f72fb01a32c916c28b90839359c662a (diff) | |
download | refined-github-48658675d7bbb3ecd5e3a51df0447b65bb0b1219.tar.gz refined-github-48658675d7bbb3ecd5e3a51df0447b65bb0b1219.tar.zst refined-github-48658675d7bbb3ecd5e3a51df0447b65bb0b1219.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.ts | 3 |
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'; |