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