import * as check from "../../../../../../generated/sync/check/maybe/array-of/dictionary-of/date"; export function isMaybeArrayOfDictionaryOfPotentiallyUnsafeDate (mixed : any) : mixed is null|undefined|(({ [key : string] : Date })[]) { return check.checkMaybeArrayOfDictionaryOfPotentiallyUnsafeDate(mixed) === undefined; } export function isMaybeArrayOfDictionaryOfValidDate (mixed : any) : mixed is null|undefined|(({ [key : string] : Date })[]) { return check.checkMaybeArrayOfDictionaryOfValidDate(mixed) === undefined; } export function isMaybeArrayOfDictionaryOfBefore (mixed : any, x : Date) : mixed is null|undefined|(({ [key : string] : Date })[]) { return check.checkMaybeArrayOfDictionaryOfBefore(mixed, x) === undefined; } export function isMaybeArrayOfDictionaryOfAfter (mixed : any, x : Date) : mixed is null|undefined|(({ [key : string] : Date })[]) { return check.checkMaybeArrayOfDictionaryOfAfter(mixed, x) === undefined; } export function isMaybeArrayOfDictionaryOfBeforeOrAt (mixed : any, x : Date) : mixed is null|undefined|(({ [key : string] : Date })[]) { return check.checkMaybeArrayOfDictionaryOfBeforeOrAt(mixed, x) === undefined; } export function isMaybeArrayOfDictionaryOfAfterOrAt (mixed : any, x : Date) : mixed is null|undefined|(({ [key : string] : Date })[]) { return check.checkMaybeArrayOfDictionaryOfAfterOrAt(mixed, x) === undefined; } export function isMaybeArrayOfDictionaryOfRange (mixed : any, args : { min? : Date, max? : Date }) : mixed is null|undefined|(({ [key : string] : Date })[]) { return check.checkMaybeArrayOfDictionaryOfRange(mixed, args) === undefined; }