commit 477b1399ca6a47ecb219ad212271ad4857804a0c
parent 8dc5384bdcb42069e6d2f35fd3f1878afd728766
Author: Florian Dold <florian@dold.me>
Date: Mon, 10 May 2021 15:32:50 +0200
fix type
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/taler-wallet-cli/src/assets.ts b/packages/taler-wallet-cli/src/assets.ts
@@ -26,7 +26,7 @@ import fs from "fs";
* The asset file should be placed in the "assets" directory
* at the top level of the package (i.e. next to package.json).
*/
-export function resolveAsset(name: string): string | null {
+export function resolveAsset(name: string): string {
const n = __filename;
const d = __dirname;
let assetPath: string;