/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
adev/shared-docs/interfaces/docs-content-loader.ts
14 строк
409 B
Andrew Scott
feat(docs-infra): Add Navigation API adapter to adev (#60722)
04 апр 2025, 21:46
04 апр 2025, 21:46
9228a73
Код
Авторство
О чём код?
/*! * @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 */ import {DocContent} from './doc-content'; /** The service responsible for fetching static content for docs pages */ export interface DocsContentLoader { getContent(path: string): Promise<DocContent>; }