Export types

This commit is contained in:
2025-02-08 19:30:22 -06:00
parent 19d4309272
commit b0f69a6dbe
2 changed files with 4 additions and 2 deletions

View File

@@ -1,6 +1,8 @@
import { Extensible } from "./interfaces"; import { Extensible } from "./interfaces";
const contentTypes: Extensible = { export type ContentType = string
const contentTypes= {
text: { text: {
plain: "text/plain", plain: "text/plain",
html: "text/html", html: "text/html",

View File

@@ -1,6 +1,6 @@
import { Extensible } from "./interfaces"; import { Extensible } from "./interfaces";
type HttpCode = { export type HttpCode = {
code: number; code: number;
name: string; name: string;
description?: string; description?: string;