@hypernetlabs/objects
Version:
Objects and types shared by the Hypernet Protocol
14 lines • 679 B
TypeScript
import { Payment } from "./Payment";
import { PublicIdentifier } from "./PublicIdentifier";
import { PullPayment } from "./PullPayment";
import { PushPayment } from "./PushPayment";
export declare class HypernetLink {
counterPartyAccount: PublicIdentifier;
payments: Payment[];
pushPayments: PushPayment[];
pullPayments: PullPayment[];
activePushPayments: PushPayment[];
activePullPayments: PullPayment[];
constructor(counterPartyAccount: PublicIdentifier, payments: Payment[], pushPayments: PushPayment[], pullPayments: PullPayment[], activePushPayments: PushPayment[], activePullPayments: PullPayment[]);
}
//# sourceMappingURL=HypernetLink.d.ts.map