diff --git a/npm/ng-packs/packages/account/src/lib/tokens/config-options.token.ts b/npm/ng-packs/packages/account/src/lib/tokens/config-options.token.ts new file mode 100644 index 0000000000..0f479a9d1a --- /dev/null +++ b/npm/ng-packs/packages/account/src/lib/tokens/config-options.token.ts @@ -0,0 +1,6 @@ +import { InjectionToken } from '@angular/core'; +import { AccountConfigOptions } from '../models/config-options'; + +export const ACCOUNT_CONFIG_OPTIONS = new InjectionToken( + 'ACCOUNT_CONFIG_OPTIONS', +); diff --git a/npm/ng-packs/packages/account/src/lib/tokens/index.ts b/npm/ng-packs/packages/account/src/lib/tokens/index.ts index 683bc4b3db..0a88318130 100644 --- a/npm/ng-packs/packages/account/src/lib/tokens/index.ts +++ b/npm/ng-packs/packages/account/src/lib/tokens/index.ts @@ -1 +1 @@ -export * from './options.token'; +export * from './config-options.token'; diff --git a/npm/ng-packs/packages/account/src/lib/tokens/options.token.ts b/npm/ng-packs/packages/account/src/lib/tokens/options.token.ts deleted file mode 100644 index a7f29c43b9..0000000000 --- a/npm/ng-packs/packages/account/src/lib/tokens/options.token.ts +++ /dev/null @@ -1,4 +0,0 @@ -import { InjectionToken } from '@angular/core'; -import { Options } from '../models/options'; - -export const ACCOUNT_OPTIONS = new InjectionToken('ACCOUNT_OPTIONS');