import * as check from "../../../../../../generated/sync/check/array-of/maybe/dictionary-of/date"; export function isArrayOfMaybeDictionaryOfPotentiallyUnsafeDate (mixed : any) : mixed is ((null|undefined|({ [key : string] : Date }))|null|undefined)[] { return check.checkArrayOfMaybeDictionaryOfPotentiallyUnsafeDate(mixed) === undefined; } export function isArrayOfMaybeDictionaryOfValidDate (mixed : any) : mixed is ((null|undefined|({ [key : string] : Date }))|null|undefined)[] { return check.checkArrayOfMaybeDictionaryOfValidDate(mixed) === undefined; } export function isArrayOfMaybeDictionaryOfBefore (mixed : any, x : Date) : mixed is ((null|undefined|({ [key : string] : Date }))|null|undefined)[] { return check.checkArrayOfMaybeDictionaryOfBefore(mixed, x) === undefined; } export function isArrayOfMaybeDictionaryOfAfter (mixed : any, x : Date) : mixed is ((null|undefined|({ [key : string] : Date }))|null|undefined)[] { return check.checkArrayOfMaybeDictionaryOfAfter(mixed, x) === undefined; } export function isArrayOfMaybeDictionaryOfBeforeOrAt (mixed : any, x : Date) : mixed is ((null|undefined|({ [key : string] : Date }))|null|undefined)[] { return check.checkArrayOfMaybeDictionaryOfBeforeOrAt(mixed, x) === undefined; } export function isArrayOfMaybeDictionaryOfAfterOrAt (mixed : any, x : Date) : mixed is ((null|undefined|({ [key : string] : Date }))|null|undefined)[] { return check.checkArrayOfMaybeDictionaryOfAfterOrAt(mixed, x) === undefined; } export function isArrayOfMaybeDictionaryOfRange (mixed : any, args : { min? : Date, max? : Date }) : mixed is ((null|undefined|({ [key : string] : Date }))|null|undefined)[] { return check.checkArrayOfMaybeDictionaryOfRange(mixed, args) === undefined; }