mirror of
https://github.com/Xahau/xahau.js.git
synced 2026-04-29 15:37:50 +00:00
10 lines
199 B
TypeScript
10 lines
199 B
TypeScript
import { BaseRequest, BaseResponse } from "./baseMethod";
|
|
|
|
export interface PingRequest extends BaseRequest {
|
|
command: "ping"
|
|
}
|
|
|
|
export interface PingResponse extends BaseResponse {
|
|
result: {}
|
|
}
|