UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

8 lines (7 loc) 180 B
import { RpcLogRecord } from './rpc-log-model'; /** * Rpc log sever side handler interface. */ export interface RpcLogHandler { handler(data: RpcLogRecord): Promise<void>; }