Files
CloudFlare-ImgBed/node_modules/@cloudflare/pages-plugin-sentry/index.d.ts
MarSeventh 4e0c55d1f9 init
2024-07-19 23:26:06 +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;