From b20b82e400629f128711bc2d5313f6604ea370d4 Mon Sep 17 00:00:00 2001 From: Luca Esposito Date: Thu, 13 Mar 2025 10:37:46 +0100 Subject: [PATCH] PLUS-2658 added missing func declaration --- src/ps-web-apis.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ps-web-apis.ts b/src/ps-web-apis.ts index 469f657..b41928e 100644 --- a/src/ps-web-apis.ts +++ b/src/ps-web-apis.ts @@ -321,6 +321,10 @@ export function abV1(): Promise { return requirePackage("ab:v1"); } +export function walletV1(): Promise { + return requirePackage("wallet:v1"); +} + export function CligV1(): Promise { return requirePackage("ppclig:v1"); }