typescript

Installation
SKILL.md

TypeScript Skill

Comprehensive patterns and best practices for TypeScript development.

What I Know

Basic Types

Primitive Types

// Primitive types
let str: string = 'hello'
let num: number = 42
let bool: boolean = true
let nothing: null = null
let notDefined: undefined = undefined
Installs
2
First Seen
Feb 4, 2026
typescript — enact-on/super-ai-github