import type CompareFn from "./Compare"; // @ts-ignore - `Ord` is only used in doc comments import type { Ord, TypeClass$$Ord } from "../typeclass/Ord"; declare module "../typeclass/Ord" { interface OrdImpl { Num: ImplOrdFor; } } /** * Implementation of the {@link Ord} type class for `number`. */ export interface Num$$Ord extends TypeClass$$Ord { Compare: Num$$Ord$CompareFn; } type Num$$Ord$CompareFn = CompareFn;