UNPKG

@rickosborne/rebound

Version:

Rick Osborne's utilities for working with bounded numbers

10 lines 506 B
import type { Int255 } from "./int255.js"; import type { Real01 } from "./real01.js"; import type { Real255 } from "./real255.js"; /** * Convert a {@link Real255} or {@link Int255} to a {@link Real01}. */ export declare function real01From255(value: number | Int255 | Real255): Real01; export declare function real01From255(value: undefined): undefined; export declare function real01From255(value: number | Int255 | Real255 | undefined): Real01 | undefined; //# sourceMappingURL=real01-from-255.d.ts.map