/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
adev/shared-docs/interfaces/navigation-item.ts
23 строки
622 B
Matthieu Riegler
docs(docs-infra): Update navigation status
11 июн 2026, 19:24
11 июн 2026, 19:24
59e2041
Код
Авторство
О чём код?
/*! * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ export interface NavigationItem { label?: string; path?: string; children?: NavigationItem[]; isExternal?: boolean; isExpanded?: boolean; level?: number; parent?: NavigationItem; contentPath?: string; status?: 'new' | 'updated'; category?: string; categoriesStatus?: Record<string, 'new' | 'updated'>[]; isCrossReferenced?: boolean; preserveOtherCategoryOrder?: boolean; // true by default }