22 lines
543 B
TypeScript
Raw Normal View History

2025-03-26 14:51:14 +00:00
import * as plugins from "../plugins.js";
import { html } from "@design.estate/dees-element";
export const page1 = () => html`
<style>
dedocument-dedocument {
margin: 16px;
}
</style>
2025-03-26 14:51:14 +00:00
<dedocument-dedocument
.printMode=${false}
letterData=${plugins.smartjson.stringifyBase64({
...plugins.shared.demoLetter,
from: {
...plugins.shared.demoLetter.from,
2025-03-26 14:51:14 +00:00
description: "a string set via stringified JSON",
},
} as plugins.tsclass.finance.TInvoice)}
>
</dedocument-dedocument>
`;