@mondaydotcomorg/atp-runtime
Version:
Runtime SDK injected into sandbox for Agent Tool Protocol
16 lines • 443 B
TypeScript
/**
* Runtime API Registry
*
*/
import type { RuntimeAPIMetadata } from './metadata/index.js';
/**
* Get all registered runtime APIs metadata
*
* This is generated at BUILD TIME by ts-morph, not at runtime
*/
export declare function getAllAPIs(): RuntimeAPIMetadata[];
/**
* Get metadata for a specific API by name
*/
export declare function getAPI(name: string): RuntimeAPIMetadata | undefined;
//# sourceMappingURL=registry.d.ts.map