UNPKG

mes-engine

Version:

A powerful and flexible video processing framework for Node.js with support for multiple processing engines, adaptive streaming, and intelligent caching.

6 lines (5 loc) 241 B
export declare abstract class StorageProvider { abstract saveChunk(chunkPath: string, data: Buffer): Promise<void>; abstract getChunk(chunkPath: string): Promise<Buffer>; abstract deleteChunk(chunkPath: string): Promise<void>; }