Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jajbshjahavahh
GitHub Repository: jajbshjahavahh/Gojo-Satoru
Path: blob/master/node_modules/@jimp/plugin-circle/index.d.ts
2591 views
1
import { ImageCallback } from '@jimp/core';
2
3
interface Circle {
4
circle(options?: {
5
radius: number,
6
x: number,
7
y: number
8
}, cb?: ImageCallback<this>): this;
9
circle(cb?: ImageCallback<this>): this;
10
}
11
12
export default function(): Circle;
13
14