gmail-mbox-stats
Version:
Nice tool to analyze Gmail MBOX file
16 lines (14 loc) • 321 B
TypeScript
declare module "node-mbox" {
function MboxStream(
inputStream: ReadStream,
options: Record<string, any>,
): {
on: <TEvent extends "data" | "error" | "finish">(
arg: TEvent,
callBack: (arg: TEvent extends "data" ? Buffer : any) => void,
) => void;
};
export = {
MboxStream,
};
}