return this.authService.isLoggedIn()
},
- notifier: this.notifier,
+ notifier: {
+ info: (text: string, title?: string, timeout?: number) => this.notifier.info(text, title, timeout),
+ error: (text: string, title?: string, timeout?: number) => this.notifier.error(text, title, timeout),
+ success: (text: string, title?: string, timeout?: number) => this.notifier.success(text, title, timeout)
+ },
translate: (value: string) => {
return this.translationsObservable
import { RegisterClientHookOptions } from '@shared/models/plugins/register-client-hook.model'
-import { Notifier } from '@app/core'
export type RegisterClientOptions = {
registerHook: (options: RegisterClientHookOptions) => void
getSettings: () => Promise<{ [ name: string ]: string }>
- notifier: Notifier
+ notifier: {
+ info: (text: string, title?: string, timeout?: number) => void,
+ error: (text: string, title?: string, timeout?: number) => void,
+ success: (text: string, title?: string, timeout?: number) => void
+ }
translate: (toTranslate: string) => Promise<string>
}
+++ /dev/null
-{"ngccVersion":"9.1.0","configFileHash":"87c535c3ce0eac2a54c246892e0e21a1","lockFileHash":"d04bf20520f2518af162e882d32081e4","entryPointPaths":[]}
\ No newline at end of file