import type { OpenDialogOptions, OpenDialogReturnValue, SaveDialogOptions, SaveDialogReturnValue } from './DialogTypes' import { RpcEvent } from './EventSystem/Rpc' // Legacy functions - use RpcEvents from EventsV2.ts for new code export function makeOpenDialogRpc(): RpcEvent { return { topic: 'openDialog', } } export function makeSaveDialogRpc(): RpcEvent { return { topic: 'saveDialog', } }