Added some more commands and mades some quality of life improvements
All checks were successful
Build / build (push) Successful in 4m27s

This commit is contained in:
Leon Mika 2026-01-25 11:00:40 +11:00
parent 3a23118036
commit 3cb5795ca5
17 changed files with 432 additions and 75 deletions

View file

@ -2,4 +2,6 @@
// This file is automatically generated. DO NOT EDIT
import {main} from '../models';
export function ListProcessors():Promise<Array<main.ListProcessorsResponse>>;
export function ProcessText(arg1:main.ProcessTextRequest):Promise<void>;

View file

@ -2,6 +2,10 @@
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT
export function ListProcessors() {
return window['go']['main']['App']['ListProcessors']();
}
export function ProcessText(arg1) {
return window['go']['main']['App']['ProcessText'](arg1);
}

View file

@ -1,9 +1,24 @@
export namespace main {
export class ListProcessorsResponse {
name: string;
label: string;
static createFrom(source: any = {}) {
return new ListProcessorsResponse(source);
}
constructor(source: any = {}) {
if ('string' === typeof source) source = JSON.parse(source);
this.name = source["name"];
this.label = source["label"];
}
}
export class TextSpan {
text: string;
pos: number;
len: number;
append: boolean;
static createFrom(source: any = {}) {
return new TextSpan(source);
@ -14,6 +29,7 @@ export namespace main {
this.text = source["text"];
this.pos = source["pos"];
this.len = source["len"];
this.append = source["append"];
}
}
export class ProcessTextRequest {