UNPKG

@rocket.chat/apps-engine

Version:

The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.

7 lines (6 loc) 216 B
import type { IUpload } from '../uploads'; export interface IUploadRead { getById(id: string): Promise<IUpload>; getBufferById(id: string): Promise<Buffer>; getBuffer(upload: IUpload): Promise<Buffer>; }