Esposter
    Preparing search index...

    Interface ExecBackend

    interface ExecBackend {
        exec: (
            command: string | readonly string[],
            options: ExecOptions,
        ) => Promise<ExecResult>;
        name: string;
    }
    Index

    Properties

    Properties

    exec: (
        command: string | readonly string[],
        options: ExecOptions,
    ) => Promise<ExecResult>
    name: string