From 1904a913b84e01e902173e782ab45e0e3b4ccf8d Mon Sep 17 00:00:00 2001 From: kaotisk Date: Wed, 27 Dec 2023 16:29:28 +0200 Subject: Use only local libraries --- .../@shared/api/helpers/extensionMessaging.d.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/external/stellar-freighter-api/@shared/api/helpers/extensionMessaging.d.ts (limited to 'src/external/stellar-freighter-api/@shared/api/helpers/extensionMessaging.d.ts') diff --git a/src/external/stellar-freighter-api/@shared/api/helpers/extensionMessaging.d.ts b/src/external/stellar-freighter-api/@shared/api/helpers/extensionMessaging.d.ts new file mode 100644 index 0000000..1aed2d8 --- /dev/null +++ b/src/external/stellar-freighter-api/@shared/api/helpers/extensionMessaging.d.ts @@ -0,0 +1,9 @@ +import { EXTERNAL_SERVICE_TYPES, SERVICE_TYPES } from "../../constants/services"; +import { Response } from "../types"; +interface Msg { + [key: string]: any; + type: EXTERNAL_SERVICE_TYPES | SERVICE_TYPES; +} +export declare const sendMessageToContentScript: (msg: Msg) => Promise; +export declare const sendMessageToBackground: (msg: Msg) => Promise; +export {}; -- cgit v1.2.3