@seshuk/payload-storage-bunny
Version:
Payload storage adapter for Bunny.net
8 lines (7 loc) • 300 B
TypeScript
import type { HandleUpload } from '@payloadcms/plugin-cloud-storage/types';
import type { BunnyAdapterOptions } from './types.js';
type Args = {
prefix?: string;
} & BunnyAdapterOptions;
export declare const getHandleUpload: ({ prefix, purge, storage, stream }: Args) => HandleUpload;
export {};