Back

Version 136

4/19/2024
/** @jsxImportSource npm:hono/jsx */

import codeOnValTown from "https://esm.town/v/andreterron/codeOnValTown?v=50";
import { honoMiddleware } from "https://esm.town/v/pomdtr/codeOnValTown";
import { extractValInfo } from "https://esm.town/v/pomdtr/extractValInfo";
import * as basicTheme from "https://esm.town/v/pomdtr/invoice_basic_theme";
import { Invoice, schema } from "https://esm.town/v/pomdtr/invoice_schema";
import { HomePage } from "https://esm.town/v/pomdtr/jsoninvoice_homepage";
import { Hono } from "npm:hono";
import { Base64 } from "npm:js-base64";

const example_invoice: Invoice = {
id: "20240401",
dates: {
start: "2024-04-01",
end: "2024-04-14",
},
tax: 10,
currency: "dollar",
from: {
name: "Achille Lacoin",
},
to: {
name: "Val Town",
},
items: [
{
title: "Creation of JSON Invoice Website",
quantity: 7,
price: 70,
},
],
};

const app = new Hono();

pomdtr-jsoninvoice.web.val.run
Updated: May 6, 2024