UNPKG

wa-sticker-hamma

Version:

<div align="center"> <img src="https://i.ibb.co/sHwxdFm/nightcore.jpg" alt="WATCIKER" width="500" />

46 lines 844 B
/// <reference types="node" /> import { IConfig, IProcessOptions } from '../typings'; export default class { /** * Supported MimeTypes */ supportedTypes: string[]; /** * Buffer of the image/video provided */ data?: Buffer | string; /** * Webpmux binary */ webpmux: string; /** * cwebp binary */ cwebp: string; /** * */ gif2webp: string; /** * Sticker Config */ config?: IConfig; /** * path of the file */ path: string; /** * Processoptions to pass to ffmpeg */ processOptions: IProcessOptions; final: string; /** * MimeType of the buffer provided */ mime: string; /** * Output options for FFMpeg */ outputOptions: string[]; } //# sourceMappingURL=Base.d.ts.map