index.d.ts 370 B

12345678910
  1. import { ImageCallback } from '@jimp/core';
  2. interface Scale {
  3. scale(f: number, cb?: ImageCallback<this>): this;
  4. scale(f: number, mode?: string, cb?: ImageCallback<this>): this;
  5. scaleToFit(w: number, h: number, cb?: ImageCallback<this>): this;
  6. scaleToFit(w: number, h: number, mode?: string, cb?: ImageCallback<this>): this;
  7. }
  8. export default function(): Scale;