import * as check from "../../../../../generated/sync/check/array-of/dictionary-of/date"; export function isArrayOfDictionaryOfPotentiallyUnsafeDate (mixed : any) : mixed is ({ [key : string] : Date })[] { return check.checkArrayOfDictionaryOfPotentiallyUnsafeDate(mixed) === undefined; } export function isArrayOfDictionaryOfValidDate (mixed : any) : mixed is ({ [key : string] : Date })[] { return check.checkArrayOfDictionaryOfValidDate(mixed) === undefined; } export function isArrayOfDictionaryOfBefore (mixed : any, x : Date) : mixed is ({ [key : string] : Date })[] { return check.checkArrayOfDictionaryOfBefore(mixed, x) === undefined; } export function isArrayOfDictionaryOfAfter (mixed : any, x : Date) : mixed is ({ [key : string] : Date })[] { return check.checkArrayOfDictionaryOfAfter(mixed, x) === undefined; } export function isArrayOfDictionaryOfBeforeOrAt (mixed : any, x : Date) : mixed is ({ [key : string] : Date })[] { return check.checkArrayOfDictionaryOfBeforeOrAt(mixed, x) === undefined; } export function isArrayOfDictionaryOfAfterOrAt (mixed : any, x : Date) : mixed is ({ [key : string] : Date })[] { return check.checkArrayOfDictionaryOfAfterOrAt(mixed, x) === undefined; } export function isArrayOfDictionaryOfRange (mixed : any, args : { min? : Date, max? : Date }) : mixed is ({ [key : string] : Date })[] { return check.checkArrayOfDictionaryOfRange(mixed, args) === undefined; }