Mika Scraper / SnackVideoSuccess
Interface: SnackVideoSuccess
Defined in: src/_other-scraper/snackVideoDL.ts:8
Represents the structure of a successful video extraction result from SnackVideo.
Properties
status
status:
boolean
Indicates whether the video extraction was successful. This property is always true
for a successful response.
Defined in: src/_other-scraper/snackVideoDL.ts:9
video
video:
string
Contains the URL of the extracted video. This property holds the path to the video that was scraped from SnackVideo.
Defined in: src/_other-scraper/snackVideoDL.ts:10
Example
Here is an example of how to utilize the SnackVideoSuccess
interface in TypeScript:
const exampleSuccessResponse: SnackVideoSuccess = {
status: true,
video: "https://example.com/path-to-video"
};
Last updated on