]> zoso.dev Git - libnemo.git/commitdiff
Explicitly specify return typings from entropy getters.
authorChris Duncan <chris@zoso.dev>
Mon, 2 Dec 2024 18:46:26 +0000 (10:46 -0800)
committerChris Duncan <chris@zoso.dev>
Mon, 2 Dec 2024 18:46:26 +0000 (10:46 -0800)
src/lib/entropy.ts

index da51f0f060a44d1d4db5803e7b77c60730aa216f..0af29555af05a8b64bc8a81774637d2f2a955501 100644 (file)
@@ -23,10 +23,10 @@ export class Entropy {
        #bytes: Uint8Array
        #hex: string
 
-       get bits () { return this.#bits }
-       get buffer () { return this.#buffer }
-       get bytes () { return this.#bytes }
-       get hex () { return this.#hex }
+       get bits (): string { return this.#bits }
+       get buffer (): ArrayBuffer { return this.#buffer }
+       get bytes (): Uint8Array { return this.#bytes }
+       get hex (): string { return this.#hex }
 
        /**
        * Generate 256 bits of entropy.