UNPKG

@4bitlabs/dct

Version:

Discrete cosine transform algorithms in js and ts

6 lines 244 B
import type { Vector } from './vector'; export interface DiscreteCosineTransformation { transform(vIn: Vector, vOut: Vector): void; inverse(vIn: Vector, vOut: Vector): void; } //# sourceMappingURL=discrete-cosine-transformation.d.ts.map