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