Add gitignor
This commit is contained in:
36
mcp_servers/traveller_map/dist/tools/find_route.d.ts
vendored
Normal file
36
mcp_servers/traveller_map/dist/tools/find_route.d.ts
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
import { z } from 'zod';
|
||||
export declare const name = "find_route";
|
||||
export declare const description: string;
|
||||
export declare const inputSchema: z.ZodObject<{
|
||||
start: z.ZodString;
|
||||
end: z.ZodString;
|
||||
jump: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
||||
avoid_red_zones: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
||||
imperial_only: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
||||
wilderness_refueling: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
||||
milieu: z.ZodOptional<z.ZodString>;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
jump: number;
|
||||
start: string;
|
||||
end: string;
|
||||
avoid_red_zones: boolean;
|
||||
imperial_only: boolean;
|
||||
wilderness_refueling: boolean;
|
||||
milieu?: string | undefined;
|
||||
}, {
|
||||
start: string;
|
||||
end: string;
|
||||
milieu?: string | undefined;
|
||||
jump?: number | undefined;
|
||||
avoid_red_zones?: boolean | undefined;
|
||||
imperial_only?: boolean | undefined;
|
||||
wilderness_refueling?: boolean | undefined;
|
||||
}>;
|
||||
export type Input = z.infer<typeof inputSchema>;
|
||||
export declare function handler(args: Input): Promise<{
|
||||
content: {
|
||||
type: "text";
|
||||
text: string;
|
||||
}[];
|
||||
}>;
|
||||
//# sourceMappingURL=find_route.d.ts.map
|
||||
Reference in New Issue
Block a user