Rocky_Mountain_Vending/.pnpm-store/v10/files/f3/eab49ac2ccc64ce20fb910882afdd6d506f6b75a9cbe09dd5bb7c2af0b04f1b30b38e46f50e5c248f600d8c91a74aa4fce0b15f740f4b732518f3b97852d0a
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

18 lines
904 B
Text

/**
* Returns the score (1 - percentile) of `value` in a log-normal distribution
* specified by the `median` value, at which the score will be 0.5, and a 10th
* percentile value, at which the score will be 0.9. The score represents the
* amount of the distribution greater than `value`. All values should be in the
* same units (e.g. milliseconds). See
* https://www.desmos.com/calculator/o98tbeyt1t
* for an interactive view of the relationship between these parameters and the
* typical parameterization (location and shape) of the log-normal distribution.
*/
export declare function getLogNormalScore({ median, p10 }: {
median: number;
p10: number;
}, value: number): number;
/**
* Interpolates the y value at a point x on the line defined by (x0, y0) and (x1, y1)
*/
export declare function linearInterpolation(x0: number, y0: number, x1: number, y1: number, x: number): number;