Copy/Paste implementation

Summary: ^

Reviewed By: aigoncharov

Differential Revision: D46515194

fbshipit-source-id: 0ee6931569d5248d5643b391683e230e0c095e41
This commit is contained in:
Lorenzo Blasa
2023-06-07 06:04:46 -07:00
committed by Facebook GitHub Bot
parent b9322247e6
commit 2815ba0fb8
5 changed files with 10 additions and 16 deletions

View File

@@ -16,12 +16,9 @@ export function initializeRenderHost(
) {
globalThis.FlipperRenderHostInstance = {
readTextFromClipboard() {
// TODO:
return undefined;
},
writeTextToClipboard(_text: string) {
// TODO:
},
writeTextToClipboard(_text: string) {},
async importFile() {
throw new Error('Not implemented');
},
@@ -46,9 +43,7 @@ export function initializeRenderHost(
shouldUseDarkColors() {
return false;
},
restartFlipper() {
// TODO:
},
restartFlipper() {},
serverConfig: flipperServerConfig,
GK(gatekeeper) {
return flipperServerConfig.gatekeepers[gatekeeper] ?? false;