UNPKG

webssh2-server

Version:

A Websocket to SSH2 gateway using xterm.js, socket.io, ssh2

7 lines (6 loc) 228 B
/** * Authentication state reducer */ import type { AuthState } from '../types.js'; import type { SessionAction } from '../actions.js'; export declare const authReducer: (state: AuthState, action: SessionAction) => AuthState;