diving-decompression
Version:
Exposes methods for defining/calculating diving decompression schedules/protocols based on the US Navy dive manual revision 7
7 lines (6 loc) • 545 B
TypeScript
import { IDive, IDivePlan, IRowDeco } from './types/interfaces';
export declare const noDecompressionLimit: ({ depth }: IDive) => string | number | undefined;
export declare const groupLetter: ({ depth, bottomTime }: IDive) => string | undefined;
export declare const repetLetter: ({ bottomTime, depth, sit }: IDivePlan) => string | undefined;
export declare const residualNitrogenTime: ({ bottomTime, depth, sit, nextDepth }: IDivePlan) => string | undefined;
export declare const decoDive: ({ bottomTime, depth }: IDive) => string | IRowDeco;