/** * @prettier */ // https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types const textMediaTypesGenerators = { "text/plain": () => "string", "text/css": () => ".selector { border: 1px solid red }", "text/csv": () => "value1,value2,value3", "text/html": () => "

content

", "text/calendar": () => "BEGIN:VCALENDAR", "text/javascript": () => "console.dir('Hello world!');", "text/xml": () => 'John Doe', "text/*": () => "string", } export default textMediaTypesGenerators