mirror of
https://github.com/MarSeventh/CloudFlare-ImgBed.git
synced 2026-04-25 22:54:52 +00:00
9 lines
252 B
TypeScript
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;
|