Skip to content

Commit 2f889bf

Browse files
committed
chore: lint
1 parent c550d84 commit 2f889bf

File tree

1 file changed

+17
-15
lines changed

1 file changed

+17
-15
lines changed

lib/types.ts

+17-15
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,23 @@ export enum PromptTypes {
1111
login = "login",
1212
}
1313

14-
export type LoginMethodParams = Partial<Pick<
15-
LoginOptions,
16-
| "audience"
17-
| "scope"
18-
| "isCreateOrg"
19-
| "prompt"
20-
| "lang"
21-
| "loginHint"
22-
| "orgCode"
23-
| "orgName"
24-
| "connectionId"
25-
| "redirectURL"
26-
| "hasSuccessPage"
27-
| "workflowDeploymentId"
28-
>>;
14+
export type LoginMethodParams = Partial<
15+
Pick<
16+
LoginOptions,
17+
| "audience"
18+
| "scope"
19+
| "isCreateOrg"
20+
| "prompt"
21+
| "lang"
22+
| "loginHint"
23+
| "orgCode"
24+
| "orgName"
25+
| "connectionId"
26+
| "redirectURL"
27+
| "hasSuccessPage"
28+
| "workflowDeploymentId"
29+
>
30+
>;
2931

3032
export type LoginOptions = {
3133
/** Audience to include in the token */

0 commit comments

Comments
 (0)