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];

// Object types
interface User {
  id: number;
  name: string;
  email?: string; // optional
Related skills
Installs
9
GitHub Stars
2
First Seen
Jan 22, 2026