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