import * as check from "../../../../../generated/sync/check/dictionary-of/string-format/date"; export function isDictionaryOfPotentiallyUnsafeDateString (mixed : any) : mixed is { [key : string] : string } { return check.checkDictionaryOfPotentiallyUnsafeDateString(mixed) === undefined; } export function isDictionaryOfValidDateString (mixed : any) : mixed is { [key : string] : string } { return check.checkDictionaryOfValidDateString(mixed) === undefined; } export function isDictionaryOfBeforeString (mixed : any, x : Date) : mixed is { [key : string] : string } { return check.checkDictionaryOfBeforeString(mixed, x) === undefined; } export function isDictionaryOfAfterString (mixed : any, x : Date) : mixed is { [key : string] : string } { return check.checkDictionaryOfAfterString(mixed, x) === undefined; } export function isDictionaryOfBeforeOrAtString (mixed : any, x : Date) : mixed is { [key : string] : string } { return check.checkDictionaryOfBeforeOrAtString(mixed, x) === undefined; } export function isDictionaryOfAfterOrAtString (mixed : any, x : Date) : mixed is { [key : string] : string } { return check.checkDictionaryOfAfterOrAtString(mixed, x) === undefined; } export function isDictionaryOfRangeString (mixed : any, args : { min? : Date, max? : Date }) : mixed is { [key : string] : string } { return check.checkDictionaryOfRangeString(mixed, args) === undefined; }