Interface AsukaBackgroundRemovalConfig

interface AsukaBackgroundRemovalConfig {
    credentials?: RequestCredentials;
    endpoint?: string;
    handler?: ((input: AsukaBackgroundRemovalInput) => Promise<AsukaBackgroundRemovalResult>);
    headers?: Record<string, string>;
}

Properties

credentials?: RequestCredentials
endpoint?: string
headers?: Record<string, string>