import * as check from "../../../../../generated/sync/check/dictionary-of/array-of/date"; export function isDictionaryOfArrayOfPotentiallyUnsafeDate (mixed : any) : mixed is { [key : string] : (Date)[] } { return check.checkDictionaryOfArrayOfPotentiallyUnsafeDate(mixed) === undefined; } export function isDictionaryOfArrayOfValidDate (mixed : any) : mixed is { [key : string] : (Date)[] } { return check.checkDictionaryOfArrayOfValidDate(mixed) === undefined; } export function isDictionaryOfArrayOfBefore (mixed : any, x : Date) : mixed is { [key : string] : (Date)[] } { return check.checkDictionaryOfArrayOfBefore(mixed, x) === undefined; } export function isDictionaryOfArrayOfAfter (mixed : any, x : Date) : mixed is { [key : string] : (Date)[] } { return check.checkDictionaryOfArrayOfAfter(mixed, x) === undefined; } export function isDictionaryOfArrayOfBeforeOrAt (mixed : any, x : Date) : mixed is { [key : string] : (Date)[] } { return check.checkDictionaryOfArrayOfBeforeOrAt(mixed, x) === undefined; } export function isDictionaryOfArrayOfAfterOrAt (mixed : any, x : Date) : mixed is { [key : string] : (Date)[] } { return check.checkDictionaryOfArrayOfAfterOrAt(mixed, x) === undefined; } export function isDictionaryOfArrayOfRange (mixed : any, args : { min? : Date, max? : Date }) : mixed is { [key : string] : (Date)[] } { return check.checkDictionaryOfArrayOfRange(mixed, args) === undefined; }