UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

16 lines (15 loc) 651 B
import { Rpc } from '../rpc'; import { RpcOutbound } from '../rpc-outbound'; import { RpcCredSSPOperationResult } from './rpc-credssp-model'; export declare class RpcCredSspResponseClient { /** * The CredSSP response command. * * @param rpc the rpc service. * @param data the CredSSP operation result object. * @param outbound the outbound channel to call. @optional * @return Promise<void> the promise object. */ static credSspResponse(rpc: Rpc, data: RpcCredSSPOperationResult): Promise<void>; static credSspResponse(rpc: Rpc, data: RpcCredSSPOperationResult, outbound?: RpcOutbound): Promise<void>; }