From: Chris Duncan Date: Thu, 4 Sep 2025 01:07:34 +0000 (-0700) Subject: Test access class name, not currently working but PoC. X-Git-Tag: v0.10.5~26^2~2 X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=8b4b16913bb06c8f2756f8f550d8b4a5eff9f220;p=libnemo.git Test access class name, not currently working but PoC. --- diff --git a/src/lib/vault/index.ts b/src/lib/vault/index.ts index 819809a..2944d27 100644 --- a/src/lib/vault/index.ts +++ b/src/lib/vault/index.ts @@ -25,15 +25,15 @@ export class Vault { ${importWorkerThreads} ${Convert} ${Constants} - const Bip39 = ${Bip39} - const Bip44 = ${Bip44} - const Blake2b = ${Blake2b} - const NanoNaCl = ${NanoNaCl} - const WalletAesGcm = ${WalletAesGcm} - const Passkey = ${Passkey} - const VaultTimer = ${VaultTimer} - const VaultWorker = ${VaultWorker} - const v = new VaultWorker() + const ${Bip39.name} = ${Bip39} + const ${Bip44.name} = ${Bip44} + const ${Blake2b.name} = ${Blake2b} + const ${NanoNaCl.name} = ${NanoNaCl} + const ${WalletAesGcm.name} = ${WalletAesGcm} + const ${Passkey.name} = ${Passkey} + const ${VaultTimer.name} = ${VaultTimer} + const ${VaultWorker.name} = ${VaultWorker} + const v = new ${VaultWorker.name}() ` } static #instances: Vault[] = []