@svta/common-media-library
Version:
A common library for media playback in JavaScript
20 lines • 439 B
TypeScript
import type { ValueOf } from '../utils/ValueOf.js';
/**
* The content type of the request.
*
* @group Request
*
* @beta
*/
export declare const RequestType: {
readonly TEXT: "text";
readonly JSON: "json";
readonly BLOB: "blob";
readonly ARRAY_BUFFER: "arrayBuffer";
readonly DOCUMENT: "document";
};
/**
* @beta
*/
export type RequestType = ValueOf<typeof RequestType>;
//# sourceMappingURL=RequestType.d.ts.map