import * as GenericDictionaryCheck from "../../../../../sync/check/generic/dictionary"; import * as check from "../../../../../generated/sync/check/array-of/function"; export type DictionaryOfArrayOfFunctionResult = GenericDictionaryCheck.IsDictionaryOfResult; export function checkDictionaryOfArrayOfFunction (mixed : any) : undefined|DictionaryOfArrayOfFunctionResult { return GenericDictionaryCheck.checkDictionaryOf( mixed, check.checkArrayOfFunction ); }