You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ping.d.ts 299B

1234567891011
  1. import type { BaseRequest, BaseResponse } from './baseMethod';
  2. export interface PingRequest extends BaseRequest {
  3. command: 'ping';
  4. }
  5. export interface PingResponse extends BaseResponse {
  6. result: {
  7. role?: string;
  8. unlimited?: boolean;
  9. };
  10. }
  11. //# sourceMappingURL=ping.d.ts.map