Files
2026-02-03 19:01:32 +08:00

9 lines
252 B
TypeScript

import type { Toucan } from "toucan-js";
import type { Options } from "toucan-js/dist/types";
export type PluginArgs = Omit<Options, "context">;
export type PluginData = { sentry: Toucan };
export default function (args: PluginArgs): PagesFunction;