-
-
Notifications
You must be signed in to change notification settings - Fork 186
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Bug Report
If I'm only trying to pull certain functions out of the class, the type is not deduced as an interface.
import typia from "typia";
class A {
a() {}
b() {}
}
const Problem = typia.llm.application<
Pick<A, 'a'>,
"chatgpt"
>();
console.log(Problem);
{
"message": "Failed to write LLM application: LLM application's generic argument must be a class/interface type.",
"name": "Error"
}
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working