UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

8 lines (7 loc) 262 B
import { RpcShellNavigate, RpcShellNavigateResult } from './rpc-shell-navigate-model'; /** * Rpc shell navigate sever side handler interface. */ export interface RpcShellNavigateHandler { handler(data: RpcShellNavigate): Promise<RpcShellNavigateResult>; }