• Set the functionality of submitting and canceling dialogs. This should be called specifically by dialog.service-host.ts immediately on startup and by nothing else. This is only here to mitigate a dependency cycle

    Parameters

    • dialogServiceFunctions: {
          rejectDialogRequest: (id: string, message: string) => void;
          resolveDialogRequest: (id: string, data: unknown) => void;
      }

      Functions from the dialog service host for resolving and rejecting dialogs

    Returns void