import * as NullOrUndefinedCheck from "../../../../../sync/check/generic/null-or-undefined"; import * as check from "../../../../../generated/sync/check/dictionary-of/dictionary"; export type MaybeDictionaryOfHasKeysErrorCodeType = check.DictionaryOfHasKeysResult; export function checkMaybeDictionaryOfHasKeys (mixed : any, keys : T[]) : undefined|MaybeDictionaryOfHasKeysErrorCodeType { return NullOrUndefinedCheck.checkNullOrUndefinedOr( mixed, () => { return check.checkDictionaryOfHasKeys(mixed, keys) } ); } export type MaybeDictionaryOfNotHasKeysErrorCodeType = check.DictionaryOfNotHasKeysResult; export function checkMaybeDictionaryOfNotHasKeys (mixed : any, keys : T[]) : undefined|MaybeDictionaryOfNotHasKeysErrorCodeType { return NullOrUndefinedCheck.checkNullOrUndefinedOr( mixed, () => { return check.checkDictionaryOfNotHasKeys(mixed, keys) } ); }