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