9 lines
392 B
TypeScript
9 lines
392 B
TypeScript
import { inject, InjectionToken } from '@angular/core';
|
|
import { IqserConfigService } from '../services';
|
|
import { HelpDocs } from './help-docs';
|
|
|
|
export const HELP_DOCS = new InjectionToken<HelpDocs>('Links to user manual or help docs');
|
|
export const MANUAL_BASE_URL = new InjectionToken<string>('Base manual URL', {
|
|
factory: () => inject(IqserConfigService).values.MANUAL_BASE_URL,
|
|
});
|