UNPKG

mysterium-tequilapi

Version:
20 lines (18 loc) 542 B
// @flow /** * Flowtype definitions for identity-registration * 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 IdentityRegistrationDTO { registered: boolean; publicKey?: PublicKeyDTO; signature?: SignatureDTO; } declare export function parseIdentityRegistrationDTO( data: any ): IdentityRegistrationDTO;