UNPKG

s3-file-manager

Version:

A streamlined, high-level S3 client for Node.js with built-in retries and support for uploads, downloads, and file operations — works with any S3-compatible storage.

6 lines (5 loc) 194 B
/** * Type guard to validate a logger implements the Logger interface. */ import { Logger } from "../types/fmconfig-types.js"; export declare const isValidLogger: (obj: any) => obj is Logger;