/** * Paths to assets that will be loaded from CDN */ export default interface BackgroundFilterPaths { /** * Path to the web worker that will processing background segmentation. */ worker: string; /** * Path to the WASM file for processing background segmentation. */ wasm: string; /** * Path to the WASM file compiled with SIMD support for processing background segmentation */ simd: string; }