UNPKG

imagerot

Version:

A lightweight, cross-environment image library for applying unique effects via raw image buffers.

10 lines (9 loc) 281 B
import { IRotItem, TEffectPoolItem } from '../../../types'; type TApplyModeHandler = (params: IRotItem & { mode: string; effectPool: { [key: string]: TEffectPoolItem; }; }) => Promise<IRotItem>; declare const applyMode: TApplyModeHandler; export { applyMode };