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