Files
reflector/www/app/lib/custom-plugins/regions.ts
2023-08-22 13:35:55 -05:00

19 lines
499 B
TypeScript

// Source code: https://github.com/katspaugh/wavesurfer.js/blob/fa2bcfe/src/plugins/regions.ts
import RegionsPlugin, {
RegionsPluginOptions,
} from "wavesurfer.js/dist/plugins/regions";
class CustomRegionsPlugin extends RegionsPlugin {
public static create(options?: RegionsPluginOptions) {
return new CustomRegionsPlugin(options);
}
constructor(options?: RegionsPluginOptions) {
super(options);
this["avoidOverlapping"] = () => {};
}
}
export default CustomRegionsPlugin;