97732 Context help model, actions and reducer

This commit is contained in:
Koen Pauwels
2023-01-04 11:43:15 +01:00
parent 10bf18fe29
commit c156e1ca6f
5 changed files with 181 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
import { Injectable } from '@angular/core';
import { ContextHelpModel } from './context-help.model';
@Injectable({
providedIn: 'root'
})
export class ContextHelpService {
constructor() { }
toggleIcons() {
}
add(contextHelp: ContextHelpModel) {
}
remove(id: string) {
}
showTooltip(id: string) {
}
hideTooltip(id: string) {
}
toggleTooltip(id: string) {
}
}