Interface: SnappinFailure
Defined in: src/_other-scraper/snappin.ts:19
Represents the error result returned when a Snappin download operation fails.
Properties
status
status: false
Defined in: src/_other-scraper/snappin.ts:20
Indicates the failure status of the Snappin download. This property is a boolean that always returns false
for instances of SnappinFailure
.
message
message: string
Defined in: src/_other-scraper/snappin.ts:21
A descriptive string that conveys the reason for the failure. This property provides developers with the necessary context to understand the error that occurred during the download process.
Example
const errorResult: SnappinFailure = {
status: false,
message: "Download failed due to network error."
};
Last updated on