typescript

Installation
SKILL.md

TypeScript Development

Modern TypeScript patterns and type-safe development.

Type Fundamentals

Basic Types

// Primitives
const name: string = 'John';
const age: number = 30;
const isActive: boolean = true;
const nothing: null = null;
const notDefined: undefined = undefined;
Installs
9
First Seen
Jan 20, 2026
typescript — vapvarun/claude-backup