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';
8
8
9
9
import { IAnyObject } from '@project-lib/core/i-any-object' ;
10
10
11
- export class GetPlanCommand < T > extends GetAPICommand < AnyObject > {
11
+ export class GetPlanCommand < T > extends GetAPICommand < AnyObject [ ] > {
12
12
constructor (
13
13
apiService : IApiService ,
14
- adapter : IAdapter < AnyObject > ,
14
+ adapter : IAdapter < AnyObject [ ] > ,
15
15
appConfig : IAnyObject ,
16
16
) {
17
17
super (
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import {AnyObject} from '@project-lib/core/api';
17
17
export class AddTenantComponent implements OnInit {
18
18
[ x : string ] : any ;
19
19
addTenantForm : FormGroup ;
20
- subscriptionPlans : AnyObject = [ ] ;
20
+ subscriptionPlans : AnyObject [ ] ;
21
21
leadId = '' ;
22
22
constructor (
23
23
private route : ActivatedRoute ,
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ export class BillingPlanService {
47
47
) { }
48
48
49
49
getPlanOptions ( filter ?: BackendFilter < AnyObject > ) {
50
- const command : GetPlanCommand < AnyObject > = new GetPlanCommand (
50
+ const command : GetPlanCommand < AnyObject [ ] > = new GetPlanCommand (
51
51
this . apiService ,
52
52
this . anyAdapter ,
53
53
this . appConfig ,
You can’t perform that action at this time.
0 commit comments