first commit

This commit is contained in:
2026-06-09 18:35:55 -03:00
commit 3581e221d0
448 changed files with 519709 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import type { HttpClient, QueryParamValue } from "./http.js";
import type { JsonObject } from "./types.js";
export type OperationCall = <T = JsonObject>(body?: JsonObject, query?: Record<string, QueryParamValue>) => Promise<T>;
export type ServiceCall = <T = JsonObject>(operation: string, body?: JsonObject, query?: Record<string, QueryParamValue>) => Promise<T>;
export type NamespaceService = ServiceCall & Record<string, OperationCall>;
export declare function createNamespaceService(http: HttpClient, namespace: string): NamespaceService;
//# sourceMappingURL=service.d.ts.map