Skip to content

Commit a0897b4

Browse files
committed
Fix import order
1 parent 77c99b7 commit a0897b4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

oidc-js/src/client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
import { AxiosError, AxiosRequestConfig, AxiosResponse } from "axios";
2020
import { ACCESS_TOKEN, AUTHORIZATION_CODE_TYPE, Hooks, OIDC_SCOPE, Storage } from "./constants";
21+
import { isWebWorkerConfig } from "./helpers";
2122
import { AxiosHttpClient, AxiosHttpClientInstance } from "./http-client";
2223
import {
2324
ConfigInterface,
@@ -43,7 +44,6 @@ import {
4344
sendRevokeTokenRequest
4445
} from "./utils";
4546
import { WebWorkerClient } from "./worker";
46-
import { isWebWorkerConfig } from "./helpers";
4747

4848
/**
4949
* Default configurations.

oidc-js/src/helpers/typeguards.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
* under the License.
1717
*/
1818

19-
import { ConfigInterface, WebWorkerConfigInterface } from "../models";
2019
import { Storage } from "../constants";
20+
import { ConfigInterface, WebWorkerConfigInterface } from "../models";
2121

2222
export const isWebWorkerConfig = (
2323
config: ConfigInterface | WebWorkerConfigInterface

oidc-js/src/utils/sign-in.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ import {
6060
USERNAME,
6161
USERNAME_TAG
6262
} from "../constants";
63+
import { isWebWorkerConfig } from "../helpers";
6364
import {
6465
AuthenticatedUserInterface,
6566
ConfigInterface,
@@ -71,7 +72,6 @@ import {
7172
UserInfo,
7273
WebWorkerConfigInterface
7374
} from "../models";
74-
import { isWebWorkerConfig } from "../helpers";
7575

7676
/**
7777
* Checks whether authorization code is present.

oidc-js/src/utils/sign-out.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ import {
2424
SIGN_OUT_REDIRECT_URL
2525
} from "../constants";
2626
import { Storage } from "../constants/storage";
27-
import { ConfigInterface, WebWorkerConfigInterface } from "../models";
2827
import { isWebWorkerConfig } from "../helpers";
28+
import { ConfigInterface, WebWorkerConfigInterface } from "../models";
2929

3030
/**
3131
* Execute user sign out request

0 commit comments

Comments
 (0)