UNPKG

chrome-cookie-extractor

Version:

Extract and decrypt Chrome cookies with curl integration - includes auth-curl command for authenticated requests

22 lines 573 B
/// <reference types="node" /> export declare class IOStreams { private _stdin; private _stdout; private _stderr; get stdin(): NodeJS.ReadStream & { fd: 0; }; get stdout(): NodeJS.WriteStream & { fd: 1; }; get stderr(): NodeJS.WriteStream & { fd: 2; }; canPrompt(): boolean; print(message: string): void; printError(message: string): void; printWarning(message: string): void; printSuccess(message: string): void; printInfo(message: string): void; } //# sourceMappingURL=iostreams.d.ts.map