Mika Scraper / HumanizeResult
Type Alias: HumanizeResult
HumanizeResult =
HumanizeSuccess
|HumanizeFailure
Defined in: src/humanizer/humanizer.ts:51
Overview
The HumanizeResult
type alias represents the potential outcomes of the humanization process within the Mika Scraper framework. It is a union type that allows for two distinct responses: a successful humanization or a failure.
Union Type Details
HumanizeSuccess
: Represents a successful humanization response, containing all relevant information pertaining to the outcome.HumanizeFailure
: Represents a failure in the humanization process, providing details about the error encountered.
Usage
This type alias is particularly useful for functions that need to handle both success and failure scenarios, enabling developers to implement appropriate response handling strategies.
function processHumanization(input: any): HumanizeResult {
// Implementation details here...
}
See Also
Last updated on