import * as check from "../../../../../generated/sync/check/dictionary-of/array-of/dictionary"; export function isDictionaryOfArrayOfHasKeys (mixed : any, keys : T[]) : mixed is { [key : string] : ({ [key : string] : any })[] } { return check.checkDictionaryOfArrayOfHasKeys(mixed, keys) === undefined; } export function isDictionaryOfArrayOfNotHasKeys (mixed : any, keys : T[]) : mixed is { [key : string] : ({ [key : string] : any })[] } { return check.checkDictionaryOfArrayOfNotHasKeys(mixed, keys) === undefined; }