File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8,10 +8,10 @@ import {Plan} from '../../shared/models';
88
99import { IAnyObject } from '@project-lib/core/i-any-object' ;
1010
11- export class GetPlanCommand < T > extends GetAPICommand < AnyObject > {
11+ export class GetPlanCommand < T > extends GetAPICommand < AnyObject [ ] > {
1212 constructor (
1313 apiService : IApiService ,
14- adapter : IAdapter < AnyObject > ,
14+ adapter : IAdapter < AnyObject [ ] > ,
1515 appConfig : IAnyObject ,
1616 ) {
1717 super (
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import {AnyObject} from '@project-lib/core/api';
1717export class AddTenantComponent implements OnInit {
1818 [ x : string ] : any ;
1919 addTenantForm : FormGroup ;
20- subscriptionPlans : AnyObject = [ ] ;
20+ subscriptionPlans : AnyObject [ ] ;
2121 leadId = '' ;
2222 constructor (
2323 private route : ActivatedRoute ,
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ export class BillingPlanService {
4747 ) { }
4848
4949 getPlanOptions ( filter ?: BackendFilter < AnyObject > ) {
50- const command : GetPlanCommand < AnyObject > = new GetPlanCommand (
50+ const command : GetPlanCommand < AnyObject [ ] > = new GetPlanCommand (
5151 this . apiService ,
5252 this . anyAdapter ,
5353 this . appConfig ,
You can’t perform that action at this time.
0 commit comments