File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
projects/saas-ui/src/app/main/components/billing-plan Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ export class BillingPlanComponent extends RouteComponentBaseDirective {
56
56
} ;
57
57
}
58
58
59
- onGridReady ( params : any ) {
59
+ onGridReady ( params : AnyObject ) {
60
60
this . gridApi = params . api ;
61
61
const dataSource : IDatasource = {
62
62
getRows : ( params : IGetRowsParams ) => {
@@ -77,7 +77,7 @@ export class BillingPlanComponent extends RouteComponentBaseDirective {
77
77
params . api . setDatasource ( dataSource ) ;
78
78
}
79
79
80
- getPaginatedBillPlans ( page : number , limit : number ) : Observable < any [ ] > {
80
+ getPaginatedBillPlans ( page : number , limit : number ) : Observable < AnyObject [ ] > {
81
81
const filter : BackendFilter < Plan > = {
82
82
offset : limit * ( page - 1 ) ,
83
83
limit : limit ,
You can’t perform that action at this time.
0 commit comments