Skip to content

Commit 3a1a978

Browse files
committed
fix: include user and token service interfaces in index.ts
Include user and token service interfaces in ./service.index.ts and ./index.ts
1 parent db1c004 commit 3a1a978

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/authentication/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@
66
export * from './authentication.component';
77
export * from './decorators';
88
export * from './keys';
9+
export * from './services';
910
export * from './strategy-adapter';
1011
export * from './types';

packages/authentication/src/services/session.service.ts renamed to packages/authentication/src/services/index.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33
// This file is licensed under the MIT License.
44
// License text available at https://opensource.org/licenses/MIT
55

6-
// TBD: create a new story to design session service, it will be about tracking the user using
7-
// empty session service interface for now.
8-
export interface SessionService {}
6+
export * from './token.service';
7+
export * from './user.service';

0 commit comments

Comments
 (0)