@svta/common-media-library
Version:
A common library for media playback in JavaScript
20 lines • 504 B
TypeScript
/**
* A URI replacement for content steering.
*
* @group Content Steering
*
* @beta
*/
export type UriReplacement = {
/**
* A string that specifies the hostname for cloned URIs.
*/
HOST?: string;
/**
* An object that specifies query parameters for cloned URIs.
* The keys represent query parameter names, and the values
* correspond to the associated parameter values.
*/
PARAMS?: Record<string, string>;
};
//# sourceMappingURL=UriReplacement.d.ts.map