Initial commit

This commit is contained in:
Zdeněk Burda
2026-01-09 21:26:40 +01:00
parent e83aec6dca
commit 41e3ce6f25
404 changed files with 61250 additions and 28 deletions

25
resources/js/types/edi.ts Normal file
View File

@@ -0,0 +1,25 @@
export type EdiHeaderForm = {
TName: string;
TDate: string;
PCall: string;
PWWLo: string;
PSect: string;
PBand: string;
RHBBS: string;
SPowe: string;
SAnte: string;
RCall: string;
MOpe1: string;
MOpe2: string;
};
export type PSectResult = {
operatorClass: "SO" | "MO" | null;
powerClass: "QRP" | "N" | "LP" | "A" | null;
timeClass: "6H" | null;
isCheckLog: boolean;
unknownTokens: string[];
normalized: string;
errors: string[];
warnings: string[];
};