Files
triggerdotdev--trigger.dev/apps/webapp/app/utils/handle.ts
T
Katia Bulatova 449e9f3d88 feat(webapp): the dashboard agent's UI
The panel, the page-context marks on the pages the agent reads, and the entry points.
2026-08-09 14:46:47 +00:00

12 lines
508 B
TypeScript

import type { ExternalScriptsFunction } from "remix-utils/external-scripts";
import type { AgentPageContext } from "~/components/dashboard-agent/page-context-types";
export type Handle = {
scripts?: ExternalScriptsFunction;
/**
* Describes this page to the dashboard agent. `matchData` is the raw route match data, so a
* typedjson route sees the serialized shape. Return undefined to fall through to the parent.
*/
agentPageContext?: (matchData: unknown) => AgentPageContext | undefined;
};