UNPKG

mysterium-tequilapi

Version:
16 lines (14 loc) 406 B
// @flow /** * Flowtype definitions for identity-proof * Generated by Flowgen from a Typescript Definition * Flowgen v1.5.8 * Author: [Joar Wilk](http://twitter.com/joarwilk) * Repo: http://github.com/joarwilk/flowgen */ import { PublicKeyDTO } from "./public-key"; import { SignatureDTO } from "./signature"; export interface IdentityProof { publicKey: PublicKeyDTO; signature: SignatureDTO; }