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.

manifest.d.ts 487B

123456789101112131415161718
  1. import { BaseRequest, BaseResponse } from './baseMethod';
  2. export interface ManifestRequest extends BaseRequest {
  3. command: 'manifest';
  4. public_key: string;
  5. }
  6. export interface ManifestResponse extends BaseResponse {
  7. result: {
  8. details?: {
  9. domain: string;
  10. ephemeral_key: string;
  11. master_key: string;
  12. seq: number;
  13. };
  14. manifest?: string;
  15. requested: string;
  16. };
  17. }
  18. //# sourceMappingURL=manifest.d.ts.map