Check if a [[Number]] is greater or equal to another one
to compare
to compare to
Boolean
import {N} from 'ts-toolbelt' type test0 = N.GreaterEq<'7', '5'> // True type test1 = N.GreaterEq<'5', '5'> // True type test2 = N.GreaterEq<'5', '7'> // False
Check if a [[Number]] is greater or equal to another one