angular/vscode-ng-language-service/integration/project/app/app.component.ts
Matthieu Riegler 6270bba056 ci: reformat files
This is after we've slightly changed a rule in #66056
2025-12-16 14:44:19 -08:00

12 lines
299 B
TypeScript

import {Component, EventEmitter, Input, Output} from '@angular/core';
@Component({
selector: 'my-app',
template: `<h1>Hello {{ name }}</h1>`,
standalone: false,
})
export class AppComponent {
name = 'Angular';
@Input() appInput = '';
@Output() appOutput = new EventEmitter<string>();
}