import * as GenericDictionaryCheck from "../../../../sync/check/generic/dictionary"; import * as check from "../../../../sync/check/function"; export type DictionaryOfFunctionResult = GenericDictionaryCheck.IsDictionaryOfResult; export function checkDictionaryOfFunction (mixed : any) : undefined|DictionaryOfFunctionResult { return GenericDictionaryCheck.checkDictionaryOf( mixed, check.checkFunction ); }