feat: draft of excel export

This commit is contained in:
2025-01-07 22:57:39 +07:00
parent 149f40c1f2
commit 4eb8cea525
22 changed files with 14341 additions and 18 deletions

View File

@@ -5,6 +5,9 @@
// @ts-ignore: Unused imports
import {Create as $Create} from "@wailsio/runtime";
/**
* Author A sample of comment
*/
export class Author {
"Id": number;
"Name": string;
@@ -33,6 +36,7 @@ export class Author {
export class Post {
"Id": number;
"Text": string;
"CreatedAt": number;
/** Creates a new Post instance. */
constructor($$source: Partial<Post> = {}) {
@@ -42,6 +46,9 @@ export class Post {
if (!("Text" in $$source)) {
this["Text"] = "";
}
if (!("CreatedAt" in $$source)) {
this["CreatedAt"] = 0;
}
Object.assign(this, $$source);
}