UNPKG

@imgly/background-removal

Version:
6 lines (5 loc) 278 B
export default removeBackground; export type { ImageSource, Config }; import { Config } from './schema'; type ImageSource = ImageData | ArrayBuffer | Uint8Array | Blob | URL | string; declare function removeBackground(image: ImageSource, configuration?: Config): Promise<Blob>;