Strict done!!

This commit is contained in:
2020-11-23 16:42:54 +05:30
parent af343cb7f9
commit afe746ecdc
142 changed files with 1258 additions and 907 deletions
@@ -12,7 +12,7 @@ function compare(a: string | number | boolean, b: string | number | boolean, isA
return (a < b ? -1 : 1) * (isAsc ? 1 : -1);
}
export class AccountListDataSource extends DataSource<Account> {
private filterValue: string = "";
private filterValue = '';
constructor(
public data: Account[],