TypeScript
Installation
SKILL.md
TypeScript Skill
Quick Start
// Basic type annotations
const name: string = "John";
const age: number = 25;
const isActive: boolean = true;
// Array types
const numbers: number[] = [1, 2, 3];
const users: Array<User> = [user1, user2];