Skip to content

Commit

Permalink
fix: remove duplicated oidc types
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianbrs committed Feb 19, 2024
1 parent 07add02 commit 28b2b19
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions lib/types/oidc.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,10 @@ export type * from 'oidc-provider';
export type Provider = _Provider;
export type ProviderClass = typeof _Provider;

export type Errors = typeof errors;
export type InteractionPolicy = typeof interactionPolicy;

export type ProviderModule = {
Provider: ProviderClass;
errors: Errors;
interactionPolicy: InteractionPolicy;
errors: typeof errors;
interactionPolicy: typeof interactionPolicy;
};

//===================================//
Expand Down

0 comments on commit 28b2b19

Please sign in to comment.