2019-09-12 15:20:54 -07:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 12:08:49 -07:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2019-09-12 15:20:54 -07:00
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {FormsModule} from '@angular/forms';
|
2021-04-03 09:52:53 -04:00
|
|
|
import {InnerComponent} from './#inner/component';
|
2019-09-12 15:20:54 -07:00
|
|
|
import {AppComponent} from './app.component';
|
2019-10-14 15:24:59 -07:00
|
|
|
import * as ParsingCases from './parsing-cases';
|
2019-09-12 15:20:54 -07:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [CommonModule, FormsModule],
|
|
|
|
declarations: [
|
|
|
|
AppComponent,
|
2021-04-03 09:52:53 -04:00
|
|
|
InnerComponent,
|
2020-01-12 14:15:50 -08:00
|
|
|
ParsingCases.CounterDirective,
|
2020-01-20 11:31:15 -08:00
|
|
|
ParsingCases.HintModel,
|
2019-10-14 15:24:59 -07:00
|
|
|
ParsingCases.NumberModel,
|
|
|
|
ParsingCases.StringModel,
|
|
|
|
ParsingCases.TemplateReference,
|
|
|
|
ParsingCases.TestComponent,
|
2020-03-27 15:32:51 +01:00
|
|
|
ParsingCases.TestPipe,
|
2020-02-19 20:38:21 +01:00
|
|
|
ParsingCases.WithContextDirective,
|
2020-10-02 13:54:18 -07:00
|
|
|
ParsingCases.CompoundCustomButtonDirective,
|
2020-10-12 12:48:56 -07:00
|
|
|
ParsingCases.EventSelectorDirective,
|
2019-09-12 15:20:54 -07:00
|
|
|
]
|
|
|
|
})
|
|
|
|
export class AppModule {
|
|
|
|
}
|