import * as NullOrUndefinedCheck from "../../../../../sync/check/generic/null-or-undefined"; import * as check from "../../../../../generated/sync/check/dictionary-of/null"; export type MaybeDictionaryOfNullErrorCodeType = check.DictionaryOfNullResult; export function checkMaybeDictionaryOfNull (mixed : any) : undefined|MaybeDictionaryOfNullErrorCodeType { return NullOrUndefinedCheck.checkNullOrUndefinedOr( mixed, check.checkDictionaryOfNull ); }