]> zoso.dev Git - libnemo.git/commitdiff
Fix JSDoc.
authorChris Duncan <chris@zoso.dev>
Mon, 2 Dec 2024 19:30:24 +0000 (11:30 -0800)
committerChris Duncan <chris@zoso.dev>
Mon, 2 Dec 2024 19:30:24 +0000 (11:30 -0800)
src/lib/account.ts

index 99332823b905e0d8986ea1e739259cddf9396820..197553d94c0c0dac962746eb982d1aea3d025335 100644 (file)
@@ -73,7 +73,7 @@ export class Account {
        *\r
        * @param {string} address - Address of the account\r
        * @param {number} [index] - Account number used when deriving the address\r
-       * @returns {Promise<Account>} The instantiated Account object\r
+       * @returns {Account} The instantiated Account object\r
        */\r
        static fromAddress (address: string, index?: number): Account {\r
                Account.#isInternal = true\r
@@ -88,7 +88,7 @@ export class Account {
        *\r
        * @param {string} publicKey - Public key of the account\r
        * @param {number} [index] - Account number used when deriving the key\r
-       * @returns {Promise<Account>} The instantiated Account object\r
+       * @returns {Account} The instantiated Account object\r
        */\r
        static fromPublicKey (publicKey: string, index?: number): Account {\r
                Account.#isInternal = true\r
@@ -104,7 +104,7 @@ export class Account {
        *\r
        * @param {string} privateKey - Private key of the account\r
        * @param {number} [index] - Account number used when deriving the key\r
-       * @returns {Promise<Account>} A new Account object\r
+       * @returns {Account} A new Account object\r
        */\r
        static fromPrivateKey (privateKey: string, index?: number): Account {\r
                Account.#isInternal = true\r
@@ -126,7 +126,7 @@ export class Account {
        * @param {string} publicKey - Public key of the account\r
        * @param {string} privateKey - Private key of the account\r
        * @param {number} [index] - Account number used when deriving the key\r
-       * @returns {Promise<Account>} The instantiated Account object\r
+       * @returns {Account} The instantiated Account object\r
        */\r
        static fromKeypair (publicKey: string, privateKey: string, index?: number): Account {\r
                Account.#isInternal = true\r