@remix-project/remixd
Advanced tools
Comparing version 0.6.28 to 0.6.29
{ | ||
"name": "@remix-project/remixd", | ||
"version": "0.6.28", | ||
"version": "0.6.29", | ||
"description": "remix server: allow accessing file system from remix.ethereum.org and start a dev environment (see help section)", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -14,15 +14,15 @@ import * as ServiceList from '../serviceList'; | ||
} | ||
type ServiceListKeys = keyof typeof ServiceList; | ||
export type Service = typeof ServiceList[ServiceListKeys]; | ||
export type ServiceClient = InstanceType<typeof ServiceList[ServiceListKeys]>; | ||
export type WebsocketOpt = { | ||
declare type ServiceListKeys = keyof typeof ServiceList; | ||
export declare type Service = typeof ServiceList[ServiceListKeys]; | ||
export declare type ServiceClient = InstanceType<typeof ServiceList[ServiceListKeys]>; | ||
export declare type WebsocketOpt = { | ||
remixIdeUrl: string; | ||
}; | ||
export type FolderArgs = { | ||
export declare type FolderArgs = { | ||
path: string; | ||
}; | ||
export type KeyPairString = { | ||
export declare type KeyPairString = { | ||
[key: string]: string; | ||
}; | ||
export type ResolveDirectory = { | ||
export declare type ResolveDirectory = { | ||
[key: string]: { | ||
@@ -32,9 +32,9 @@ isDirectory: boolean; | ||
}; | ||
export type FileContent = { | ||
export declare type FileContent = { | ||
content: string; | ||
readonly: boolean; | ||
}; | ||
export type SharedFolderArgs = FolderArgs & KeyPairString; | ||
export type WS = typeof Websocket; | ||
export type Filelist = KeyPairString; | ||
export declare type SharedFolderArgs = FolderArgs & KeyPairString; | ||
export declare type WS = typeof Websocket; | ||
export declare type Filelist = KeyPairString; | ||
export {}; |
145105