449e9f3d88
The panel, the page-context marks on the pages the agent reads, and the entry points.
12 lines
508 B
TypeScript
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;
|
|
};
|