Mash
Retrieve mash media endpoint.
type ApiMashFunction = (args: ApiMashRequest, opts?: JobOptions) => Promise<DataOrError<ApiMashResponse>>
/**
* A request for the mash endpoint of an
* Api.
*/
interface ApiMashRequest {
mediaId?: string
}
interface ApiMashResponse {
media?: StoredMedia
}