aboutsummaryrefslogtreecommitdiff
path: root/src/external/stellar-freighter-api/@shared/api/helpers/extensionMessaging.d.ts
blob: 1aed2d809eeaf2a7344d3494cd9b45b2f9dbabb6 (plain)
1
2
3
4
5
6
7
8
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<Response>;
export declare const sendMessageToBackground: (msg: Msg) => Promise<Response>;
export {};