Skip to content

Commit f2150e2

Browse files
committed
fix(arc-saas): cleaning PR
cleaning PR GH-34
1 parent a7bd692 commit f2150e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/saas-ui/src/app/main/components/billing-plan/billing-plan.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export class BillingPlanComponent extends RouteComponentBaseDirective {
5656
};
5757
}
5858

59-
onGridReady(params: any) {
59+
onGridReady(params: AnyObject) {
6060
this.gridApi = params.api;
6161
const dataSource: IDatasource = {
6262
getRows: (params: IGetRowsParams) => {
@@ -77,7 +77,7 @@ export class BillingPlanComponent extends RouteComponentBaseDirective {
7777
params.api.setDatasource(dataSource);
7878
}
7979

80-
getPaginatedBillPlans(page: number, limit: number): Observable<any[]> {
80+
getPaginatedBillPlans(page: number, limit: number): Observable<AnyObject[]> {
8181
const filter: BackendFilter<Plan> = {
8282
offset: limit * (page - 1),
8383
limit: limit,

0 commit comments

Comments
 (0)