chore: fix type #1787

Merged
konrad merged 1 commits from dpschen/frontend:feature/chore-fix-type into main 2022-04-09 18:21:00 +00:00
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ export function isNil(value: any) {
return value == null
}
export function omitBy(obj: {}, check: (value: any) => Boolean): {} {
export function omitBy(obj: {}, check: (value: any) => boolean): {} {
if (isNil(obj)) {
return {}
}