Installation
npm install --save @types/ntqdm
Summary
This package contains type definitions for ntqdm (https://github.com/jhedin/ntqdm).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ntqdm.
declare namespace ntqdm {
interface TqdmOptions {
desc: string;
total: number;
minIter: number;
minInterval: number;
logging: boolean;
}
}
declare function ntqdm<T>(iter: Iterable<T>, par?: Partial<ntqdm.TqdmOptions>): IterableIterator<T>;
export = ntqdm;
Additional Details
- Last updated: Tue, 07 Nov 2023 09:09:39 GMT
- Dependencies: none
Credits
These definitions were written by Christoph Thiede.