typescript-ops

Installation
SKILL.md

TypeScript Operations

Comprehensive TypeScript skill covering the type system, generics, and production patterns.

Type Narrowing Decision Tree

How to narrow a type?
├─ Primitive type check
│  └─ typeof: typeof x === "string"
├─ Instance check
│  └─ instanceof: x instanceof Date
├─ Property existence
│  └─ in: "email" in user
├─ Discriminated union
Related skills
Installs
10
GitHub Stars
17
First Seen
Mar 9, 2026