@dapplets/dapplet-extension
Version:
The Bridge to the Augmented Web.
24 lines (23 loc) • 766 B
TypeScript
import { FC } from 'react';
import ModuleInfo from '../../../../../background/models/moduleInfo';
import VersionInfo from '../../../../../background/models/versionInfo';
interface PropsDevModule {
setDappletsDetail: (x: any) => void;
modules: {
module: ModuleInfo;
versions: VersionInfo[];
isDeployed: boolean[];
};
setModuleInfo: (x: any) => void;
setModuleVersion: (x: any) => void;
setUnderConstructionDetails: (x: any) => void;
isLocalhost?: boolean;
setUpdate?: (x: any) => void;
setOpenWallet?: () => void;
connectedDescriptors?: [];
selectedWallet?: string;
setCurrentAccount?: (x: any) => void;
currentAccount?: any;
}
export declare const DevModule: FC<PropsDevModule>;
export {};