UNPKG

dive-deco

Version:

A TypeScript implementation of decompression calculation algorithms for scuba diving, featuring Bühlmann ZH-L16C algorithm with gradient factors, gas management, and oxygen toxicity tracking.

14 lines (13 loc) 355 B
import { Cns, Otu, Pressure } from './types'; import { Time } from './time'; export declare class OxTox { private cnsValue; private otuValue; constructor(cns?: Cns, otu?: Otu); static default(): OxTox; get cns(): Cns; get otu(): Otu; addExposure(ppO2: Pressure, time: Time): void; private getCnsRate; clone(): OxTox; }