@codeplaydata/datasus
Version:
This application decompress the datasus micro data and serve as a gateway class.
13 lines (12 loc) • 394 B
TypeScript
/**
* Error used to signal that a worker process terminated with a fatal error.
*/
declare class ProcessFatal extends Error {
constructor(pid: string, error?: Error);
/**
* Throws a standardized ProcessFatal error.
* @param file The process id or file identifier.
* @param error Optional nested error.
*/
static exception(file: string, error?: Error): void;
}