mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
- Turning on @typescript-eslint/recommended-requiring-type-checking - Turning off @typescript-eslint/no-unnecessary-type-assertion (due too many false positives) - Making @typescript-eslint/no-explicit-any an error (except in tests) Signed-off-by: Sebastian Malton <sebastian@malton.name>
17 lines
544 B
TypeScript
17 lines
544 B
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
import { getInjectable } from "@ogre-tools/injectable";
|
|
import { broadcastMessage } from "./ipc";
|
|
|
|
export type BroadcastMessage = (channel: string, ...args: unknown[]) => Promise<void>;
|
|
|
|
const broadcastMessageInjectable = getInjectable({
|
|
id: "broadcast-message",
|
|
instantiate: (): BroadcastMessage => broadcastMessage,
|
|
causesSideEffects: true,
|
|
});
|
|
|
|
export default broadcastMessageInjectable;
|