diff --git a/src/types/name-matcha.d.ts b/src/types/name-matcha.d.ts new file mode 100644 index 0000000000..ceaf3e99a4 --- /dev/null +++ b/src/types/name-matcha.d.ts @@ -0,0 +1,7 @@ +declare module '@leapwallet/name-matcha' { + interface LookupAllResponse { + [key: string]: string | null; + } + + export function lookupAll(...args: any[]): Promise; +}