@kangthink/q-engine
Version:
A question-answer generation engine that stimulates thinking
13 lines • 416 B
TypeScript
import { Edge } from '../types';
export declare class EdgeBuilder implements Edge {
id: string;
from: string;
to: string;
transform: string;
metadata?: Record<string, any>;
createdAt: Date;
constructor(from: string, to: string, transform: string, metadata?: Record<string, any>);
toJSON(): Edge;
}
export declare const EdgeModel: typeof EdgeBuilder;
//# sourceMappingURL=Edge.d.ts.map