Files
frigate/web/src/api/wsContext.ts
T

12 lines
236 B
TypeScript
Raw Normal View History

import { createContext } from "react";
export type Update = {
topic: string;
payload: unknown;
retain: boolean;
};
export type WsSend = (update: Update) => void;
export const WsSendContext = createContext<WsSend | null>(null);