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.

random.d.ts 274B

12345678910
  1. import { BaseRequest, BaseResponse } from './baseMethod';
  2. export interface RandomRequest extends BaseRequest {
  3. command: 'random';
  4. }
  5. export interface RandomResponse extends BaseResponse {
  6. result: {
  7. random: string;
  8. };
  9. }
  10. //# sourceMappingURL=random.d.ts.map