UNPKG

436 BTypeScriptView Raw
1/// <reference types="node" />
2import { ExecSyncOptions } from 'child_process';
3export declare function openssl(cmd: string): Buffer;
4export declare function run(cmd: string, options?: ExecSyncOptions): Buffer;
5export declare function waitForUser(): Promise<{}>;
6export declare function reportableError(message: string): Error;
7export declare function mktmp(): string;
8export declare function sudo(cmd: string): Promise<string | null>;