Skip to content

Commit

Permalink
Break circular imports
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurensRietveld committed Sep 8, 2023
1 parent 0e34bc8 commit 03ac426
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/multiSamlStrategy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
VerifyWithoutRequest,
VerifyWithRequest,
} from "./types";
import { SAML } from ".";
import {SAML} from "@node-saml/node-saml";

export class MultiSamlStrategy extends AbstractStrategy {
static readonly newSamlProviderOnConstruct = false;
Expand Down
3 changes: 2 additions & 1 deletion src/strategy.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Strategy as PassportStrategy } from "passport-strategy";
import { strict as assert } from "assert";
import * as url from "url";
import { Profile, SAML } from ".";
import { Profile } from ".";
import {SAML} from "@node-saml/node-saml";
import { PassportSamlConfig } from "./types";
import {
AuthenticateOptions,
Expand Down

0 comments on commit 03ac426

Please sign in to comment.