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