/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import { getInjectionToken } from "@ogre-tools/injectable"; import type { JsonValue } from "type-fest"; export interface MessageChannel { id: string; _messageSignature?: Message; } export const messageChannelInjectionToken = getInjectionToken>({ id: "message-channel", });