2019-09-12 18:20:54 -04:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 15:08:49 -04:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2019-09-12 18:20:54 -04: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';
|
|
|
|
import {AppComponent} from './app.component';
|
2019-10-14 18:24:59 -04:00
|
|
|
import * as ParsingCases from './parsing-cases';
|
2019-09-12 18:20:54 -04:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [CommonModule, FormsModule],
|
|
|
|
declarations: [
|
|
|
|
AppComponent,
|
2020-01-12 17:15:50 -05:00
|
|
|
ParsingCases.CounterDirective,
|
2020-01-20 14:31:15 -05:00
|
|
|
ParsingCases.HintModel,
|
2019-10-14 18:24:59 -04:00
|
|
|
ParsingCases.NumberModel,
|
|
|
|
ParsingCases.StringModel,
|
|
|
|
ParsingCases.TemplateReference,
|
|
|
|
ParsingCases.TestComponent,
|
2020-03-27 10:32:51 -04:00
|
|
|
ParsingCases.TestPipe,
|
2020-02-19 14:38:21 -05:00
|
|
|
ParsingCases.WithContextDirective,
|
2020-10-02 16:54:18 -04:00
|
|
|
ParsingCases.CompoundCustomButtonDirective,
|
2020-10-12 15:48:56 -04:00
|
|
|
ParsingCases.EventSelectorDirective,
|
2019-09-12 18:20:54 -04:00
|
|
|
]
|
|
|
|
})
|
|
|
|
export class AppModule {
|
|
|
|
}
|