import * as check from "../../../../generated/sync/check/dictionary-of/dictionary"; export function isDictionaryOfHasKeys (mixed : any, keys : T[]) : mixed is { [key : string] : { [key : string] : any } } { return check.checkDictionaryOfHasKeys(mixed, keys) === undefined; } export function isDictionaryOfNotHasKeys (mixed : any, keys : T[]) : mixed is { [key : string] : { [key : string] : any } } { return check.checkDictionaryOfNotHasKeys(mixed, keys) === undefined; }