import * as check from "../../../../../generated/sync/check/maybe/dictionary-of/date"; export function isMaybeDictionaryOfPotentiallyUnsafeDate (mixed : any) : mixed is null|undefined|({ [key : string] : Date }) { return check.checkMaybeDictionaryOfPotentiallyUnsafeDate(mixed) === undefined; } export function isMaybeDictionaryOfValidDate (mixed : any) : mixed is null|undefined|({ [key : string] : Date }) { return check.checkMaybeDictionaryOfValidDate(mixed) === undefined; } export function isMaybeDictionaryOfBefore (mixed : any, x : Date) : mixed is null|undefined|({ [key : string] : Date }) { return check.checkMaybeDictionaryOfBefore(mixed, x) === undefined; } export function isMaybeDictionaryOfAfter (mixed : any, x : Date) : mixed is null|undefined|({ [key : string] : Date }) { return check.checkMaybeDictionaryOfAfter(mixed, x) === undefined; } export function isMaybeDictionaryOfBeforeOrAt (mixed : any, x : Date) : mixed is null|undefined|({ [key : string] : Date }) { return check.checkMaybeDictionaryOfBeforeOrAt(mixed, x) === undefined; } export function isMaybeDictionaryOfAfterOrAt (mixed : any, x : Date) : mixed is null|undefined|({ [key : string] : Date }) { return check.checkMaybeDictionaryOfAfterOrAt(mixed, x) === undefined; } export function isMaybeDictionaryOfRange (mixed : any, args : { min? : Date, max? : Date }) : mixed is null|undefined|({ [key : string] : Date }) { return check.checkMaybeDictionaryOfRange(mixed, args) === undefined; }