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