/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
packages/devlow-bench/src/jstat.d.ts
9 строк
335 B
Will Binns-Smith
Remove `turbopack/packages` and relocate devlow to `packages/` (#96860)
07 авг 2026, 06:39
Не верифицирован
07 авг 2026, 06:39
286169a
Код
Авторство
О чём код?
// Minimal ambient declarations for `jstat` (no TypeScript types shipped). // Only the distribution CDFs used by src/statistics.ts are declared. declare module 'jstat' { const jstat: { studentt: { cdf(x: number, dof: number): number } normal: { cdf(x: number, mean: number, sd: number): number } } export default jstat }