bknd
Version:
Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.
9 lines (8 loc) • 342 B
TypeScript
import type { App } from "../../App";
export type ImageOptimizationPluginOptions = {
accessUrl?: string;
resolvePath?: string;
autoFormat?: boolean;
devBypass?: string;
};
export declare function ImageOptimizationPlugin({ accessUrl, resolvePath, autoFormat, devBypass, }?: ImageOptimizationPluginOptions): (app: App) => void;