import * as NullOrUndefinedCheck from "../../../../../sync/check/generic/null-or-undefined"; import * as check from "../../../../../generated/sync/check/dictionary-of/number"; export type MaybeDictionaryOfPotentiallyUnsafeNumberErrorCodeType = check.DictionaryOfPotentiallyUnsafeNumberResult; export function checkMaybeDictionaryOfPotentiallyUnsafeNumber (mixed : any) : undefined|MaybeDictionaryOfPotentiallyUnsafeNumberErrorCodeType { return NullOrUndefinedCheck.checkNullOrUndefinedOr( mixed, check.checkDictionaryOfPotentiallyUnsafeNumber ); } export type MaybeDictionaryOfFiniteNumberErrorCodeType = check.DictionaryOfFiniteNumberResult; export function checkMaybeDictionaryOfFiniteNumber (mixed : any) : undefined|MaybeDictionaryOfFiniteNumberErrorCodeType { return NullOrUndefinedCheck.checkNullOrUndefinedOr( mixed, check.checkDictionaryOfFiniteNumber ); } export type MaybeDictionaryOfIntegerErrorCodeType = check.DictionaryOfIntegerResult; export function checkMaybeDictionaryOfInteger (mixed : any) : undefined|MaybeDictionaryOfIntegerErrorCodeType { return NullOrUndefinedCheck.checkNullOrUndefinedOr( mixed, check.checkDictionaryOfInteger ); } export type MaybeDictionaryOfGreaterThanErrorCodeType = check.DictionaryOfGreaterThanResult; export function checkMaybeDictionaryOfGreaterThan (mixed : any, x : number) : undefined|MaybeDictionaryOfGreaterThanErrorCodeType { return NullOrUndefinedCheck.checkNullOrUndefinedOr( mixed, () => { return check.checkDictionaryOfGreaterThan(mixed, x) } ); } export type MaybeDictionaryOfGreaterThanOrEqualErrorCodeType = check.DictionaryOfGreaterThanOrEqualResult; export function checkMaybeDictionaryOfGreaterThanOrEqual (mixed : any, x : number) : undefined|MaybeDictionaryOfGreaterThanOrEqualErrorCodeType { return NullOrUndefinedCheck.checkNullOrUndefinedOr( mixed, () => { return check.checkDictionaryOfGreaterThanOrEqual(mixed, x) } ); } export type MaybeDictionaryOfLessThanErrorCodeType = check.DictionaryOfLessThanResult; export function checkMaybeDictionaryOfLessThan (mixed : any, x : number) : undefined|MaybeDictionaryOfLessThanErrorCodeType { return NullOrUndefinedCheck.checkNullOrUndefinedOr( mixed, () => { return check.checkDictionaryOfLessThan(mixed, x) } ); } export type MaybeDictionaryOfLessThanOrEqualErrorCodeType = check.DictionaryOfLessThanOrEqualResult; export function checkMaybeDictionaryOfLessThanOrEqual (mixed : any, x : number) : undefined|MaybeDictionaryOfLessThanOrEqualErrorCodeType { return NullOrUndefinedCheck.checkNullOrUndefinedOr( mixed, () => { return check.checkDictionaryOfLessThanOrEqual(mixed, x) } ); } export type MaybeDictionaryOfRangeErrorCodeType = check.DictionaryOfRangeResult; export function checkMaybeDictionaryOfRange (mixed : any, args : { min? : number, max? : number }) : undefined|MaybeDictionaryOfRangeErrorCodeType { return NullOrUndefinedCheck.checkNullOrUndefinedOr( mixed, () => { return check.checkDictionaryOfRange(mixed, args) } ); } export type MaybeDictionaryOfPositiveErrorCodeType = check.DictionaryOfPositiveResult; export function checkMaybeDictionaryOfPositive (mixed : any) : undefined|MaybeDictionaryOfPositiveErrorCodeType { return NullOrUndefinedCheck.checkNullOrUndefinedOr( mixed, check.checkDictionaryOfPositive ); } export type MaybeDictionaryOfNegativeErrorCodeType = check.DictionaryOfNegativeResult; export function checkMaybeDictionaryOfNegative (mixed : any) : undefined|MaybeDictionaryOfNegativeErrorCodeType { return NullOrUndefinedCheck.checkNullOrUndefinedOr( mixed, check.checkDictionaryOfNegative ); } export type MaybeDictionaryOfNonNegativeErrorCodeType = check.DictionaryOfNonNegativeResult; export function checkMaybeDictionaryOfNonNegative (mixed : any) : undefined|MaybeDictionaryOfNonNegativeErrorCodeType { return NullOrUndefinedCheck.checkNullOrUndefinedOr( mixed, check.checkDictionaryOfNonNegative ); } export type MaybeDictionaryOfNaturalNumberErrorCodeType = check.DictionaryOfNaturalNumberResult; export function checkMaybeDictionaryOfNaturalNumber (mixed : any) : undefined|MaybeDictionaryOfNaturalNumberErrorCodeType { return NullOrUndefinedCheck.checkNullOrUndefinedOr( mixed, check.checkDictionaryOfNaturalNumber ); } export type MaybeDictionaryOfOddErrorCodeType = check.DictionaryOfOddResult; export function checkMaybeDictionaryOfOdd (mixed : any) : undefined|MaybeDictionaryOfOddErrorCodeType { return NullOrUndefinedCheck.checkNullOrUndefinedOr( mixed, check.checkDictionaryOfOdd ); } export type MaybeDictionaryOfEvenErrorCodeType = check.DictionaryOfEvenResult; export function checkMaybeDictionaryOfEven (mixed : any) : undefined|MaybeDictionaryOfEvenErrorCodeType { return NullOrUndefinedCheck.checkNullOrUndefinedOr( mixed, check.checkDictionaryOfEven ); } export type MaybeDictionaryOfNotOneOfErrorCodeType = check.DictionaryOfNotOneOfResult; export function checkMaybeDictionaryOfNotOneOf (mixed : any, arr : T[]) : undefined|MaybeDictionaryOfNotOneOfErrorCodeType { return NullOrUndefinedCheck.checkNullOrUndefinedOr( mixed, () => { return check.checkDictionaryOfNotOneOf(mixed, arr) } ); } export type MaybeDictionaryOfLatitudeErrorCodeType = check.DictionaryOfLatitudeResult; export function checkMaybeDictionaryOfLatitude (mixed : any) : undefined|MaybeDictionaryOfLatitudeErrorCodeType { return NullOrUndefinedCheck.checkNullOrUndefinedOr( mixed, check.checkDictionaryOfLatitude ); } export type MaybeDictionaryOfLongitudeErrorCodeType = check.DictionaryOfLongitudeResult; export function checkMaybeDictionaryOfLongitude (mixed : any) : undefined|MaybeDictionaryOfLongitudeErrorCodeType { return NullOrUndefinedCheck.checkNullOrUndefinedOr( mixed, check.checkDictionaryOfLongitude ); }