import * as NullOrUndefinedCheck from "../../../../../sync/check/generic/null-or-undefined"; import * as check from "../../../../../generated/sync/check/array-of/function"; export type MaybeArrayOfFunctionErrorCodeType = check.ArrayOfFunctionResult; export function checkMaybeArrayOfFunction (mixed : any) : undefined|MaybeArrayOfFunctionErrorCodeType { return NullOrUndefinedCheck.checkNullOrUndefinedOr( mixed, check.checkArrayOfFunction ); }