import { DitherOptions } from "./dither.js"; import { TypedArray } from "./typed-array.js"; //#region src/convolution1d.d.ts type Kernel1D = [TypedArray, number?]; type EdgeHandlingTypes = 'wrap' | 'extend' | 'mirror'; interface ConvolutionOptions1D { edge?: EdgeHandlingTypes; dither?: DitherOptions; } declare function convolution1D(kern: Kernel1D, source: TypedArray, dest: T, options?: ConvolutionOptions1D): T; //#endregion export { ConvolutionOptions1D, EdgeHandlingTypes, Kernel1D, convolution1D }; //# sourceMappingURL=convolution1d.d.ts.map