tmux.ts - v0.1.3
    Preparing search index...

    Variable killServerConst

    killServer: (
        options?: {},
    ) => Effect<
        string,
        TmuxCommandOptionsError
        | TmuxProcessRunError,
        TmuxProcess,
    > = ...

    Kill the tmux server and all sessions (tmux kill-server).

    Type Declaration

      • (
            options?: {},
        ): Effect<
            string,
            TmuxCommandOptionsError
            | TmuxProcessRunError,
            TmuxProcess,
        >
      • Parameters

        • Optionaloptions: {}

        Returns Effect<string, TmuxCommandOptionsError | TmuxProcessRunError, TmuxProcess>

        An empty string on success.

    await tmux.killServer();