import { DaffNavigationServiceInterface } from '@daffodil/navigation/driver'
interface DaffNavigationServiceInterface<T extends DaffGenericNavigationTree<T>> {
get(id: T["id"]): Observable<T>
getTree(): Observable<T>
}
Observable
Requests a specific navigation item by ID.
Parameter | id: T["id"] |
---|---|
Description |
Observable
Requests the entire top-level navigation tree.