We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db1c004 commit 3a1a978Copy full SHA for 3a1a978
packages/authentication/src/index.ts
@@ -6,5 +6,6 @@
6
export * from './authentication.component';
7
export * from './decorators';
8
export * from './keys';
9
+export * from './services';
10
export * from './strategy-adapter';
11
export * from './types';
packages/authentication/src/services/session.service.ts renamed to packages/authentication/src/services/index.ts
@@ -3,6 +3,5 @@
3
// This file is licensed under the MIT License.
4
// License text available at https://opensource.org/licenses/MIT
5
-// TBD: create a new story to design session service, it will be about tracking the user using
-// empty session service interface for now.
-export interface SessionService {}
+export * from './token.service';
+export * from './user.service';
0 commit comments