update typings

connect-component
Ryukemeister 2023-09-29 13:39:11 +05:30
parent 130d30c514
commit 89fb9d2946
1 changed files with 1 additions and 1 deletions

View File

@ -8,5 +8,5 @@ export interface AtomsGlobalConfigProps {
export interface ConnectButtonProps {
buttonText?: string;
onButtonClick: () => Promise<void>;
onButtonClick: (payload: { cb: (err: { error: { message: string } } | null) => void }) => Promise<void>;
}