Files
kbrilla cc64def294 test(language-service): add inlay hint regression and integration coverage
test(language-service): add inlay hint regression and integration coverage
2026-03-06 10:18:28 -08:00

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 {}