Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MR414N-ID
GitHub Repository: MR414N-ID/botku2
Path: blob/master/node_modules/@jimp/plugin-scale/index.d.ts
1126 views
1
import { ImageCallback } from '@jimp/core';
2
3
interface Scale {
4
scale(f: number, cb?: ImageCallback<this>): this;
5
scale(f: number, mode?: string, cb?: ImageCallback<this>): this;
6
scaleToFit(w: number, h: number, cb?: ImageCallback<this>): this;
7
scaleToFit(w: number, h: number, mode?: string, cb?: ImageCallback<this>): this;
8
}
9
10
export default function(): Scale;
11
12