import * as check from "../../../sync/check/dictionary"; export function isHasKeys (mixed : any, keys : T[]) : mixed is { [key : string] : any } { return check.checkHasKeys(mixed, keys) === undefined; } export function isNotHasKeys (mixed : any, keys : T[]) : mixed is { [key : string] : any } { return check.checkNotHasKeys(mixed, keys) === undefined; }