ts-generics
Installation
SKILL.md
async function getUser(): Promise<User> {
return fetch('/api').then(r => r.json() as User);
}
type Container<System> = { items: System[] };
async function getUser(): Promise<User> {
return fetch('/api').then(r => r.json() as User);
}
type Container<System> = { items: System[] };