Initial commit
This commit is contained in:
25
resources/js/types/edi.ts
Normal file
25
resources/js/types/edi.ts
Normal 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[];
|
||||
};
|
||||
Reference in New Issue
Block a user