16 lines
385 B
TypeScript
16 lines
385 B
TypeScript
/**
|
|
* Skill Evolution Simulation
|
|
*
|
|
* Tests SkillLibrary with skill creation, evolution, and composition
|
|
*/
|
|
declare const _default: {
|
|
description: string;
|
|
run(config: any): Promise<{
|
|
created: number;
|
|
searched: number;
|
|
avgSuccessRate: number;
|
|
totalTime: number;
|
|
}>;
|
|
};
|
|
export default _default;
|
|
//# sourceMappingURL=skill-evolution.d.ts.map
|