import * as check from "../../../../../../generated/sync/check/maybe/dictionary-of/array-of/dictionary"; export function isMaybeDictionaryOfArrayOfHasKeys (mixed : any, keys : T[]) : mixed is null|undefined|({ [key : string] : ({ [key : string] : any })[] }) { return check.checkMaybeDictionaryOfArrayOfHasKeys(mixed, keys) === undefined; } export function isMaybeDictionaryOfArrayOfNotHasKeys (mixed : any, keys : T[]) : mixed is null|undefined|({ [key : string] : ({ [key : string] : any })[] }) { return check.checkMaybeDictionaryOfArrayOfNotHasKeys(mixed, keys) === undefined; }