import * as check from "../../../../generated/sync/check/dictionary-of/number"; export function isDictionaryOfPotentiallyUnsafeNumber (mixed : any) : mixed is { [key : string] : number } { return check.checkDictionaryOfPotentiallyUnsafeNumber(mixed) === undefined; } export function isDictionaryOfFiniteNumber (mixed : any) : mixed is { [key : string] : number } { return check.checkDictionaryOfFiniteNumber(mixed) === undefined; } export function isDictionaryOfInteger (mixed : any) : mixed is { [key : string] : number } { return check.checkDictionaryOfInteger(mixed) === undefined; } export function isDictionaryOfGreaterThan (mixed : any, x : number) : mixed is { [key : string] : number } { return check.checkDictionaryOfGreaterThan(mixed, x) === undefined; } export function isDictionaryOfGreaterThanOrEqual (mixed : any, x : number) : mixed is { [key : string] : number } { return check.checkDictionaryOfGreaterThanOrEqual(mixed, x) === undefined; } export function isDictionaryOfLessThan (mixed : any, x : number) : mixed is { [key : string] : number } { return check.checkDictionaryOfLessThan(mixed, x) === undefined; } export function isDictionaryOfLessThanOrEqual (mixed : any, x : number) : mixed is { [key : string] : number } { return check.checkDictionaryOfLessThanOrEqual(mixed, x) === undefined; } export function isDictionaryOfRange (mixed : any, args : { min? : number, max? : number }) : mixed is { [key : string] : number } { return check.checkDictionaryOfRange(mixed, args) === undefined; } export function isDictionaryOfPositive (mixed : any) : mixed is { [key : string] : number } { return check.checkDictionaryOfPositive(mixed) === undefined; } export function isDictionaryOfNegative (mixed : any) : mixed is { [key : string] : number } { return check.checkDictionaryOfNegative(mixed) === undefined; } export function isDictionaryOfNonNegative (mixed : any) : mixed is { [key : string] : number } { return check.checkDictionaryOfNonNegative(mixed) === undefined; } export function isDictionaryOfNaturalNumber (mixed : any) : mixed is { [key : string] : number } { return check.checkDictionaryOfNaturalNumber(mixed) === undefined; } export function isDictionaryOfOdd (mixed : any) : mixed is { [key : string] : number } { return check.checkDictionaryOfOdd(mixed) === undefined; } export function isDictionaryOfEven (mixed : any) : mixed is { [key : string] : number } { return check.checkDictionaryOfEven(mixed) === undefined; } export function isDictionaryOfNotOneOf (mixed : any, arr : T[]) : mixed is { [key : string] : number } { return check.checkDictionaryOfNotOneOf(mixed, arr) === undefined; } export function isDictionaryOfLatitude (mixed : any) : mixed is { [key : string] : number } { return check.checkDictionaryOfLatitude(mixed) === undefined; } export function isDictionaryOfLongitude (mixed : any) : mixed is { [key : string] : number } { return check.checkDictionaryOfLongitude(mixed) === undefined; }