UNPKG

@ppramanik62/lab-works

Version:

A comprehensive command-line toolkit for hydraulic turbine calculations, supporting Francis Turbine and Pelton Wheel computations with interactive mode and validation.

13 lines 445 B
import { KaplanInput } from "../../shared/validation"; export interface KaplanOptions extends Partial<KaplanInput> { json?: boolean; } /** * Collect input from command line arguments or interactive prompts */ export declare const collectInput: (options: KaplanOptions) => Promise<KaplanInput>; /** * Validate input data using Zod schema */ export declare const validateInput: (input: any) => KaplanInput; //# sourceMappingURL=io.d.ts.map