hikma-engine
Version:
Code Knowledge Graph Indexer - A sophisticated TypeScript-based indexer that transforms Git repositories into multi-dimensional knowledge stores for AI agents
13 lines (12 loc) • 390 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FunctionCallDTO = void 0;
const base_dto_1 = require("./base.dto");
class FunctionCallDTO extends base_dto_1.BaseDTO {
constructor(id, caller_id, callee_id) {
super(id);
this.caller_id = caller_id;
this.callee_id = callee_id;
}
}
exports.FunctionCallDTO = FunctionCallDTO;