Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MR414N-ID
GitHub Repository: MR414N-ID/botku2
Path: blob/master/node_modules/@jimp/plugin-blit/index.d.ts
1126 views
1
import { Jimp, ImageCallback } from '@jimp/core';
2
3
interface Blit {
4
blit(src: Jimp, x: number, y: number, cb?: ImageCallback<this>): this;
5
blit(
6
src: Jimp,
7
x: number,
8
y: number,
9
srcx: number,
10
srcy: number,
11
srcw: number,
12
srch: number,
13
cb?: ImageCallback<this>
14
): this;
15
}
16
17
export default function(): Blit;
18
19