@microsoft/windows-admin-center-sdk
Version:
Microsoft - Windows Admin Center Shell
16 lines (14 loc) • 504 B
JavaScript
import { RpcInboundClient } from '../rpc-inbound-client';
import { RpcNotificationKey } from './rpc-notification-model';
export class RpcNotificationClient {
/**
* The notification command.
*
* @param data the notification object.
* @return Promise<void> the promise object.
*/
static notify(rpc, data) {
return RpcInboundClient.call(rpc, RpcNotificationKey.command, RpcNotificationKey.version, data);
}
}
//# sourceMappingURL=rpc-notification-client.js.map