UNPKG

imgproxy

Version:

NodeJS client library to generate imgproxy urls

15 lines (12 loc) 452 B
import { BaseBuilder } from './base-builder.js'; import './types.js'; /** * Builder used when imgproxy is set in presets only mode: IMGPROXY_ONLY_PRESETS=true * https://github.com/imgproxy/imgproxy/blob/master/docs/presets.md#only-presets */ declare class ImgproxyPresetOnlyBuilder extends BaseBuilder { private presets; preset(...presets: string[]): this; protected serializeOptions(): string; } export { ImgproxyPresetOnlyBuilder };