import * as check from "../../../../../generated/sync/check/array-of/dictionary-of/undefined"; import {AssertError} from "../../../../../sync/error/AssertError"; export function assertArrayOfDictionaryOfUndefined (name : string, mixed : any) : (({ [key : string] : undefined })[])|never { const error = check.checkArrayOfDictionaryOfUndefined(mixed); if (error === undefined) { return mixed; } else { throw new AssertError(name, error, mixed); } }