remove some flow annotations
This commit is contained in:
parent
88dcadcb1b
commit
873a7c7c84
27
rpc.js
27
rpc.js
@ -1411,24 +1411,7 @@ var upload_status = function (Env, safeKey, filesize, _cb) { // FIXME FILES
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
/*::
|
RPC.create = function (config, cb) {
|
||||||
const flow_Config = require('./config.example.js');
|
|
||||||
type Config_t = typeof(flow_Config);
|
|
||||||
import type { ChainPadServer_Storage_t } from './storage/file.js'
|
|
||||||
type NetfluxWebsocketSrvContext_t = {
|
|
||||||
store: ChainPadServer_Storage_t,
|
|
||||||
getHistoryOffset: (
|
|
||||||
ctx: NetfluxWebsocketSrvContext_t,
|
|
||||||
channelName: string,
|
|
||||||
lastKnownHash: ?string,
|
|
||||||
cb: (err: ?Error, offset: ?number)=>void
|
|
||||||
)=>void
|
|
||||||
};
|
|
||||||
*/
|
|
||||||
RPC.create = function (
|
|
||||||
config /*:Config_t*/,
|
|
||||||
cb /*:(?Error, ?Function)=>void*/
|
|
||||||
) {
|
|
||||||
Log = config.log;
|
Log = config.log;
|
||||||
|
|
||||||
// load pin-store...
|
// load pin-store...
|
||||||
@ -1445,7 +1428,7 @@ RPC.create = function (
|
|||||||
Sessions: {},
|
Sessions: {},
|
||||||
paths: {},
|
paths: {},
|
||||||
msgStore: config.store,
|
msgStore: config.store,
|
||||||
pinStore: (undefined /*:any*/),
|
pinStore: undefined,
|
||||||
pinnedPads: {},
|
pinnedPads: {},
|
||||||
evPinnedPadsReady: mkEvent(true),
|
evPinnedPadsReady: mkEvent(true),
|
||||||
limits: {},
|
limits: {},
|
||||||
@ -1782,11 +1765,7 @@ RPC.create = function (
|
|||||||
handleMessage(true);
|
handleMessage(true);
|
||||||
};
|
};
|
||||||
|
|
||||||
var rpc = function (
|
var rpc = function (ctx, data, respond) {
|
||||||
ctx /*:NetfluxWebsocketSrvContext_t*/,
|
|
||||||
data /*:Array<Array<any>>*/,
|
|
||||||
respond /*:(?string, ?Array<any>)=>void*/)
|
|
||||||
{
|
|
||||||
try {
|
try {
|
||||||
return rpc0(ctx, data, respond);
|
return rpc0(ctx, data, respond);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user