UNPKG

ontology-ts-sdk

Version:

Comprehensive TypeScript library for the Ontology blockchain.

15 lines (14 loc) 332 B
declare type GroupType = string | Group; export default class Group { members: GroupType[]; /** * * Define the threshold number of signatures * @type {number} * @memberof Group */ threshold: number; constructor(members: GroupType[], threshold: number); serialize(): string; } export {};