import * as check from "../../../../../generated/sync/check/dictionary-of/string-format/number"; export function isDictionaryOfPotentiallyUnsafeNumberString (mixed : any) : mixed is { [key : string] : string } { return check.checkDictionaryOfPotentiallyUnsafeNumberString(mixed) === undefined; } export function isDictionaryOfFiniteNumberString (mixed : any) : mixed is { [key : string] : string } { return check.checkDictionaryOfFiniteNumberString(mixed) === undefined; } export function isDictionaryOfIntegerString (mixed : any) : mixed is { [key : string] : string } { return check.checkDictionaryOfIntegerString(mixed) === undefined; } export function isDictionaryOfGreaterThanString (mixed : any, x : number) : mixed is { [key : string] : string } { return check.checkDictionaryOfGreaterThanString(mixed, x) === undefined; } export function isDictionaryOfGreaterThanOrEqualString (mixed : any, x : number) : mixed is { [key : string] : string } { return check.checkDictionaryOfGreaterThanOrEqualString(mixed, x) === undefined; } export function isDictionaryOfLessThanString (mixed : any, x : number) : mixed is { [key : string] : string } { return check.checkDictionaryOfLessThanString(mixed, x) === undefined; } export function isDictionaryOfLessThanOrEqualString (mixed : any, x : number) : mixed is { [key : string] : string } { return check.checkDictionaryOfLessThanOrEqualString(mixed, x) === undefined; } export function isDictionaryOfRangeString (mixed : any, args : { min? : number, max? : number }) : mixed is { [key : string] : string } { return check.checkDictionaryOfRangeString(mixed, args) === undefined; } export function isDictionaryOfPositiveString (mixed : any) : mixed is { [key : string] : string } { return check.checkDictionaryOfPositiveString(mixed) === undefined; } export function isDictionaryOfNegativeString (mixed : any) : mixed is { [key : string] : string } { return check.checkDictionaryOfNegativeString(mixed) === undefined; } export function isDictionaryOfNonNegativeString (mixed : any) : mixed is { [key : string] : string } { return check.checkDictionaryOfNonNegativeString(mixed) === undefined; } export function isDictionaryOfNaturalNumberString (mixed : any) : mixed is { [key : string] : string } { return check.checkDictionaryOfNaturalNumberString(mixed) === undefined; } export function isDictionaryOfOddString (mixed : any) : mixed is { [key : string] : string } { return check.checkDictionaryOfOddString(mixed) === undefined; } export function isDictionaryOfEvenString (mixed : any) : mixed is { [key : string] : string } { return check.checkDictionaryOfEvenString(mixed) === undefined; } export function isDictionaryOfNotOneOfString (mixed : any, arr : T[]) : mixed is { [key : string] : string } { return check.checkDictionaryOfNotOneOfString(mixed, arr) === undefined; } export function isDictionaryOfLatitudeString (mixed : any) : mixed is { [key : string] : string } { return check.checkDictionaryOfLatitudeString(mixed) === undefined; } export function isDictionaryOfLongitudeString (mixed : any) : mixed is { [key : string] : string } { return check.checkDictionaryOfLongitudeString(mixed) === undefined; }