Skip to content

Commit

Permalink
fixup: comment
Browse files Browse the repository at this point in the history
Signed-off-by: Todd Baert <[email protected]>
  • Loading branch information
toddbaert committed Feb 26, 2024
1 parent 52434f7 commit 364fe2b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/shared/src/open-feature.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ export class ProviderWrapper<P extends CommonProvider<AnyProviderStatus>, S exte
export abstract class OpenFeatureCommonAPI<S extends AnyProviderStatus, P extends CommonProvider<S> = CommonProvider<S>, H extends BaseHook = BaseHook>
implements Eventing, EvaluationLifeCycle<OpenFeatureCommonAPI<S, P>>, ManageLogger<OpenFeatureCommonAPI<S, P>>
{
protected abstract readonly _statusEnumType: typeof ClientProviderStatus | typeof ServerProviderStatus; // an accessor
// accessor for the type of the ProviderStatus enum (client or server)
protected abstract readonly _statusEnumType: typeof ClientProviderStatus | typeof ServerProviderStatus;
protected abstract _createEventEmitter(): GenericEventEmitter<AnyProviderEvent>;
protected abstract _defaultProvider: ProviderWrapper<P, AnyProviderStatus>;
protected abstract _domainScopedProviders: Map<string, ProviderWrapper<P, AnyProviderStatus>>;
Expand Down

0 comments on commit 364fe2b

Please sign in to comment.