UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

25 lines (23 loc) 883 B
import { RpcObservableClient } from '../rpc-observable-client'; import { RpcObservableUpdateThemeKey } from './rpc-observable-update-theme-model'; export class RpcObservableUpdateThemeClient extends RpcObservableClient { /** * Initializes a new instane of RpcObservableUpdateThemeClient class. * * @param rpc the rpc object. */ constructor(rpc) { super(rpc, RpcObservableUpdateThemeKey.command, RpcObservableUpdateThemeKey.version); } /** * The update theme command. * * @param request the Rpc update theme object. * @param outbound the Rpc outbound channel object. * @return Observable<RpcObservableUpdateThemeResult> the observable object. */ updateTheme(request, outbound) { return this.observableCall(request, outbound); } } //# sourceMappingURL=rpc-observable-update-theme-client.js.map