This repository has been archived on 2023-12-17. You can view files and clone it, but cannot push or open issues or pull requests.
extension/src/mimes.ts

17 lines
531 B
TypeScript

export const CONTENT_MODE_BUFFERED = "buffered";
export const CONTENT_MODE_CHUNKED = "chunked";
//export const CONTENT_MODE_STREAMED = "streamed";
export const contentModes: { [mimeType: string]: string } = {
// Images
"image/png": CONTENT_MODE_BUFFERED,
"image/jpeg": CONTENT_MODE_BUFFERED,
"image/x-citrix-jpeg": CONTENT_MODE_BUFFERED,
"image/gif": CONTENT_MODE_BUFFERED,
"image/webp": CONTENT_MODE_BUFFERED,
//JS
"application/javascript": CONTENT_MODE_BUFFERED,
"application/json": CONTENT_MODE_BUFFERED,
};