1
0
mirror of https://github.com/bigchaindb/js-bigchaindb-driver.git synced 2024-06-26 03:06:42 +02:00
js-bigchaindb-driver/types/Ed25519Keypair.d.ts
getlarge 858acf2693
fix: add type definitions
Signed-off-by: getlarge <ed@getlarge.eu>
2021-03-10 13:59:04 +01:00

11 lines
272 B
TypeScript

// Copyright BigchainDB GmbH and BigchainDB contributors
// SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
// Code is Apache-2.0 and docs are CC-BY-4.0
export default class Ed25519Keypair {
publicKey: string;
privateKey: string;
constructor(seed?: Buffer);
}