Skip to content

Commit 917c502

Browse files
Merge pull request #3039 from acorncom/patch-2
Relax sessionData Record type from string to any
2 parents 8c0621a + 656ebde commit 917c502

File tree

1 file changed

+1
-1
lines changed
  • packages/ember-simple-auth/src/test-support

1 file changed

+1
-1
lines changed

packages/ember-simple-auth/src/test-support/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function ensureAuthenticator(owner: any) {
2020
* @return {Promise}
2121
* @public
2222
*/
23-
export async function authenticateSession(sessionData: Record<string, string>) {
23+
export async function authenticateSession(sessionData: Record<string, any>) {
2424
const { owner } = getContext() as { owner: any };
2525
const session = owner.lookup(SESSION_SERVICE_KEY);
2626
ensureAuthenticator(owner);

0 commit comments

Comments
 (0)