UNPKG

@darkpay/dark-types

Version:

JavaScript type definitions for Darkdot blockchain.

13 lines (12 loc) 386 B
import { Struct } from '@polkadot/types'; import { OptionContent } from './content'; import { OptionText } from './utils'; export declare type ProfileUpdateType = { content: OptionContent; gpg: OptionText; }; export declare class ProfileUpdate extends Struct { constructor(value?: ProfileUpdateType); set content(value: OptionContent); set gpg(value: OptionText); }