UNPKG

@hot-labs/near-connect

Version:

![ezgif-26d74832f88c3c](https://github.com/user-attachments/assets/c4422057-38bb-4cd9-8bd0-568e29f46280)

7 lines (6 loc) 287 B
import { NearWalletBase } from "../types"; export type WalletPlugin = Partial<{ [K in keyof NearWalletBase]: NearWalletBase[K] extends (...args: infer Args) => infer Return ? (...args: [...Args, () => Return]) => Return : never; }> & { [key: string]: (...args: any[]) => any; };