@dapplets/dapplet-extension
Version:
The Bridge to the Augmented Web.
16 lines (15 loc) • 505 B
TypeScript
import { FC } from 'react';
export interface DeveloperProps {
setDappletsDetail: (x: any) => void;
setModuleInfo: any;
setModuleVersion: any;
setUnderConstruction: (x: any) => void;
setUnderConstructionDetails: (x: any) => void;
isShowChildrenRegistry: boolean;
setShowChildrenRegistry: (x: any) => void;
setOpenWallet: () => void;
connectedDescriptors: [];
selectedWallet: string;
initModules: () => void;
}
export declare const Developer: FC<DeveloperProps>;