@coinmeca/ui
Version:
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
32 lines • 808 B
TypeScript
import type { Process } from "../../../containers/modals/process/Process";
export interface Connect extends Omit<Process, "process"> {
process?: boolean | null;
timer?: number;
texts?: {
chain?: Texts;
wallet?: Texts;
close?: string;
back?: string;
goBack?: string;
ok?: string;
};
chains?: any;
wallets?: any;
resolver?: {
chain?: Function;
wallet?: Function;
};
config?: object;
onClose: Function;
onChain?: Function;
onWallet?: Function;
onConnect?: Function;
onError?: Function;
onBack?: Function;
}
export interface Texts {
title?: string;
sub?: string;
}
export default function Connect(props: Connect): import("react").JSX.Element;
//# sourceMappingURL=Connect.d.ts.map