Rename RemoteNodeAPI tp RemoteServerContext

Reviewed By: mweststrate

Differential Revision: D32921160

fbshipit-source-id: 9d6b723427d7a819f2fc1b7168f6d1077dc56bd9
This commit is contained in:
Andrey Goncharov
2021-12-10 06:34:37 -08:00
committed by Facebook GitHub Bot
parent 0e785fb18d
commit 4cb80a452f
8 changed files with 18 additions and 18 deletions

View File

@@ -7,7 +7,10 @@
* @format
*/
import {_setFlipperLibImplementation, RemoteNodeAPI} from 'flipper-plugin';
import {
_setFlipperLibImplementation,
RemoteServerContext,
} from 'flipper-plugin';
import type {
BufferEncoding,
ExecOptions,
@@ -68,17 +71,12 @@ export function initializeFlipperLibImplementation(
appPath: renderHost.serverConfig.paths.appPath,
homePath: renderHost.serverConfig.paths.homePath,
},
removeNodeAPI: {
remoteServerContext: {
childProcess: {
exec: (async (
exec: async (
command: string,
options?: ExecOptions & {encoding?: BufferEncoding},
) =>
renderHost.flipperServer.exec(
'node-api-exec',
command,
options,
)) as RemoteNodeAPI['childProcess']['exec'],
) => renderHost.flipperServer.exec('node-api-exec', command, options),
},
fs: {
access: async (path: string, mode?: number) =>
@@ -95,7 +93,7 @@ export function initializeFlipperLibImplementation(
'node-api-fs-mkdir',
path,
options,
)) as RemoteNodeAPI['fs']['mkdir'],
)) as RemoteServerContext['fs']['mkdir'],
copyFile: async (src: string, dest: string, flags?: number) =>
renderHost.flipperServer.exec(
'node-api-fs-copyFile',