1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-07-16 21:14:05 +00:00

Many small tweaks

This commit is contained in:
2023-01-11 20:41:15 +01:00
parent f4bf270a20
commit 90ffdc6a8b
11 changed files with 223 additions and 171 deletions

19
frontend/wailsjs/go/models.ts Executable file
View File

@ -0,0 +1,19 @@
export namespace main {
export class findResult {
total: number;
results: any;
static createFrom(source: any = {}) {
return new findResult(source);
}
constructor(source: any = {}) {
if ('string' === typeof source) source = JSON.parse(source);
this.total = source["total"];
this.results = source["results"];
}
}
}