export type MapFunction = (value: I, inMin: number, inMax: number, outMin: number, outMax: number) => O; export type CompiledMapFunction = (value: I) => O; export type TransformFunction = (value: I) => O; export type MapNumberFunction = MapFunction; export type CompiledMapNumberFunction = CompiledMapFunction; //# sourceMappingURL=types.d.ts.map