Files
Dorod-Sky/skyvern-frontend/src/store/DeleteNodeCallbackContext.ts

10 lines
225 B
TypeScript
Raw Normal View History

import { createContext } from "react";
type DeleteNodeCallback = (id: string) => void;
const DeleteNodeCallbackContext = createContext<DeleteNodeCallback | undefined>(
undefined,
);
export { DeleteNodeCallbackContext };