We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e369992 commit 496a36dCopy full SHA for 496a36d
openfeature-provider/js/src/ConfidenceServerProviderLocal.ts
@@ -133,7 +133,7 @@ export class ConfidenceServerProviderLocal implements Provider {
133
};
134
}
135
136
- async updateState() {
+ async updateState():Promise<void> {
137
const { signedUri, account } = await this.stateUriProvider();
138
const req = new Request(signedUri);
139
if(this.stateEtag) {
@@ -155,7 +155,7 @@ export class ConfidenceServerProviderLocal implements Provider {
155
})
156
157
158
- async flush() {
+ async flush():Promise<void> {
159
const writeFlagLogRequest = this.resolver.flushLogs();
160
if(writeFlagLogRequest.length == 0) {
161
// nothing to send
0 commit comments