import * as check from "../../../../generated/sync/check/dictionary-of/date"; export function isDictionaryOfPotentiallyUnsafeDate (mixed : any) : mixed is { [key : string] : Date } { return check.checkDictionaryOfPotentiallyUnsafeDate(mixed) === undefined; } export function isDictionaryOfValidDate (mixed : any) : mixed is { [key : string] : Date } { return check.checkDictionaryOfValidDate(mixed) === undefined; } export function isDictionaryOfBefore (mixed : any, x : Date) : mixed is { [key : string] : Date } { return check.checkDictionaryOfBefore(mixed, x) === undefined; } export function isDictionaryOfAfter (mixed : any, x : Date) : mixed is { [key : string] : Date } { return check.checkDictionaryOfAfter(mixed, x) === undefined; } export function isDictionaryOfBeforeOrAt (mixed : any, x : Date) : mixed is { [key : string] : Date } { return check.checkDictionaryOfBeforeOrAt(mixed, x) === undefined; } export function isDictionaryOfAfterOrAt (mixed : any, x : Date) : mixed is { [key : string] : Date } { return check.checkDictionaryOfAfterOrAt(mixed, x) === undefined; } export function isDictionaryOfRange (mixed : any, args : { min? : Date, max? : Date }) : mixed is { [key : string] : Date } { return check.checkDictionaryOfRange(mixed, args) === undefined; }