Add gitignor
This commit is contained in:
11
mcp_servers/traveller_map/dist/api/client.d.ts
vendored
Normal file
11
mcp_servers/traveller_map/dist/api/client.d.ts
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
export type QueryParams = Record<string, string | number | boolean | undefined>;
|
||||
export declare function apiGet(path: string, params?: QueryParams): Promise<Response>;
|
||||
export declare function apiGetImage(path: string, params?: QueryParams): Promise<string>;
|
||||
export declare function apiGetJson<T>(path: string, params?: QueryParams): Promise<T>;
|
||||
export declare function apiGetText(path: string, params?: QueryParams): Promise<string>;
|
||||
export declare function apiGetDataUri(path: string, params?: QueryParams): Promise<{
|
||||
base64: string;
|
||||
mimeType: string;
|
||||
}>;
|
||||
export declare function apiPostImage(path: string, queryParams: QueryParams, formBody: Record<string, string>): Promise<string>;
|
||||
//# sourceMappingURL=client.d.ts.map
|
||||
Reference in New Issue
Block a user