fix some numerals were not displayed according to the numerical system

This commit is contained in:
MaysWind
2025-08-29 00:18:46 +08:00
parent 0e634d83f4
commit 8f6adaa417
13 changed files with 145 additions and 83 deletions
+5
View File
@@ -8,6 +8,11 @@ export interface NameValue {
readonly value: string;
}
export interface NameNumeralValue {
readonly name: string;
readonly value: number;
}
export interface TypeAndName {
readonly type: number;
readonly name: string;