UNPKG

mlts-experiment-data

Version:

Machine learning experiment data downloader.

6 lines (5 loc) 208 B
export interface Printable { toString(): string; } export declare type Printer = (data: Printable) => void; export declare function printProgressAsync<R>(f: (printer: Printer) => Promise<R>): Promise<R>;