Add gitignor
This commit is contained in:
30
mcp_servers/traveller_map/dist/parsers/uwp.d.ts
vendored
Normal file
30
mcp_servers/traveller_map/dist/parsers/uwp.d.ts
vendored
Normal 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
|
||||
Reference in New Issue
Block a user