mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
cc64def294
test(language-service): add inlay hint regression and integration coverage
15 lines
446 B
TypeScript
15 lines
446 B
TypeScript
import {CommonModule} from '@angular/common';
|
|
import {NgModule} from '@angular/core';
|
|
import {PostModule} from 'post';
|
|
|
|
import {AppComponent} from './app.component';
|
|
import {FooComponent} from './foo.component';
|
|
import {HighlightDirective} from './highlight.directive';
|
|
|
|
@NgModule({
|
|
imports: [CommonModule, PostModule],
|
|
declarations: [AppComponent, FooComponent, HighlightDirective],
|
|
bootstrap: [AppComponent],
|
|
})
|
|
export class AppModule {}
|