@jackdbd/r2-media-store
Version:
Store Micropub media in a Cloudflare R2 bucket.
13 lines • 390 B
TypeScript
import { S3Client } from '@aws-sdk/client-s3';
import { type Log } from './log.js';
export interface Options {
bucket_name: string;
bucket_prefix: string;
log?: Log;
s3: S3Client;
}
export declare const defHardDeleteMedia: (options?: Options) => (param_0: string) => Promise<{
details?: string[] | undefined;
summary: string;
}>;
//# sourceMappingURL=delete.d.ts.map