@microsoft/windows-admin-center-sdk
Version:
Microsoft - Windows Admin Center Shell
22 lines (21 loc) • 527 B
TypeScript
import { RpcBaseData } from '../rpc-base';
/**
* RPC alive request name and version.
*/
export declare class RpcAliveKey {
static command: string;
static version: string;
}
/**
* Rpc alive data.
*/
export interface RpcAliveData extends RpcBaseData {
/**
* The timestamp. Date.now() / the number of milliseconds elapsed since 1 January 1970 00:00:00 UTC.
*/
timestamp: number;
/**
* The flag indicating not to close the window from this tool indefinitely.
*/
forever?: boolean;
}