UNPKG

@dapplets/dapplet-extension

Version:
16 lines (15 loc) 505 B
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>;