/
githubmirror
/
angular-cli
Обзор
Документация
Войти
/
githubmirror
/
angular-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/angular/cli/src/package-managers/logger.ts
30 строк
746 B
Charles Lyding
refactor(@angular/cli): introduce new package manager abstraction
26 сен 2025, 00:46
26 сен 2025, 00:46
b69d85b
Код
Авторство
О чём код?
/** * @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 */ /** * @fileoverview This file defines a basic logger interface that is used by * the package manager abstraction. This allows the abstraction to be decoupled * from any specific logging implementation. */ /** * A basic logger interface for the package manager abstraction. */ export interface Logger { /** * Logs a debug message. * @param message The message to log. */ debug(message: string): void; /** * Logs an informational message. * @param message The message to log. */ info(message: string): void; }