/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
devtools/projects/ng-devtools-backend/src/lib/index.ts
15 строк
444 B
Joey Perrott
build: migrate adev devtools package to use ts_project (#61210)
08 май 2025, 19:38
08 май 2025, 19:38
e2c763a
Код
Авторство
О чём код?
/** * @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 {Events, MessageBus} from '../../../protocol'; import {subscribeToClientEvents} from './client-event-subscribers'; export const initializeMessageBus = (messageBus: MessageBus<Events>) => { subscribeToClientEvents(messageBus); };