import * as GenericDictionaryCheck from "../../../../../sync/check/generic/dictionary"; import * as check from "../../../../../generated/sync/check/maybe/null"; export type DictionaryOfMaybeNullResult = GenericDictionaryCheck.IsDictionaryOfResult; export function checkDictionaryOfMaybeNull (mixed : any) : undefined|DictionaryOfMaybeNullResult { return GenericDictionaryCheck.checkDictionaryOf( mixed, check.checkMaybeNull ); }