UNPKG

express-sharp

Version:

Real-time image processing for your express application

9 lines (8 loc) 264 B
/// <reference types="node" /> import { ImageAdapter } from '../interfaces'; export declare class FsAdapter implements ImageAdapter { rootPath: string; private log; constructor(rootPath: string); fetch(path: string): Promise<Buffer | undefined>; }