//#region src/dither.d.ts type NoneDitherOptions = { type: 'none'; }; type RandomDitherOptions = { type: 'random'; rng?: () => number; }; type DitherOptions = NoneDitherOptions | RandomDitherOptions; //#endregion export { DitherOptions, NoneDitherOptions, RandomDitherOptions }; //# sourceMappingURL=dither.d.ts.map