Add gitignor

This commit is contained in:
2026-04-07 22:06:36 +02:00
parent 49802d89d5
commit 5703cf5871
98 changed files with 5329 additions and 72 deletions

View File

@@ -0,0 +1,30 @@
export interface DecodedUWPField {
code: string;
value: number;
description: string;
}
export interface DecodedUWP {
raw: string;
starport: {
code: string;
description: string;
};
size: DecodedUWPField & {
diameter_km: string;
};
atmosphere: DecodedUWPField;
hydrographics: DecodedUWPField & {
percent: string;
};
population: DecodedUWPField & {
estimate: string;
};
government: DecodedUWPField;
law_level: DecodedUWPField;
tech_level: DecodedUWPField & {
era: string;
};
}
export declare function eHexValue(char: string): number;
export declare function parseUWP(uwp: string): DecodedUWP;
//# sourceMappingURL=uwp.d.ts.map