ontology-ts-sdk
Version:
Comprehensive TypeScript library for the Ontology blockchain.
14 lines (13 loc) • 328 B
TypeScript
export 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;
}