This commit is contained in:
MarSeventh
2024-07-19 23:26:06 +08:00
commit 4e0c55d1f9
1401 changed files with 69819 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
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;