From 18b02cc6e4a792f78442b58764fa9b1a9149e57d Mon Sep 17 00:00:00 2001 From: BluJ Date: Thu, 11 May 2023 16:54:42 -0600 Subject: [PATCH] chore: Add getInterface interfaceId --- lib/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/types.ts b/lib/types.ts index 4f26d88..344e831 100644 --- a/lib/types.ts +++ b/lib/types.ts @@ -182,7 +182,7 @@ export type NetworkInterface = { /** Human readable description, used as tooltip usually */ description: string /** All URIs */ - addresses: Address[] + addresses: string[] /** Defaults to false, but describes if this address can be opened in a browser as an * ui interface */ @@ -325,7 +325,7 @@ export type Effects = { */ getInterface(options: { packageId?: PackageId - interfaceId?: string + interfaceId: string }): Promise /**