/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
vscode-ng-language-service/integration/project/app/foo.component.ts
17 строк
283 B
Joey Perrott
build: migrate vscode extension into repo (#63924)
24 сен 2025, 23:24
24 сен 2025, 23:24
863c7ea
Код
Авторство
О чём код?
import {Component, signal} from '@angular/core'; @Component({ templateUrl: 'foo.component.html', standalone: false, }) export class FooComponent { title = 'Foo Component'; sig = signal(1); x = { sig: signal(1), }; /** returns 1 */ method() { return 1; } }