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;