Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MR414N-ID
GitHub Repository: MR414N-ID/botku2
Path: blob/master/node_modules/@jimp/plugin-resize/index.d.ts
1126 views
1
import { ImageCallback } from '@jimp/core';
2
3
interface ResizeClass {
4
resize(w: number, h: number, cb?: ImageCallback<this>): this;
5
resize(w: number, h: number, mode?: string, cb?: ImageCallback<this>): this;
6
}
7
8
interface Resize {
9
constants: {
10
// resize methods
11
RESIZE_NEAREST_NEIGHBOR: 'nearestNeighbor';
12
RESIZE_BILINEAR: 'bilinearInterpolation';
13
RESIZE_BICUBIC: 'bicubicInterpolation';
14
RESIZE_HERMITE: 'hermiteInterpolation';
15
RESIZE_BEZIER: 'bezierInterpolation';
16
}
17
18
class: ResizeClass
19
}
20
21
export default function(): Resize;
22
23