Tüm araçlar
Ücretsiz

Aranabilir, yazdırılabilir bir TypeScript referansı — türler, arayüzler, generics, utility türleri, daraltma, bildirim dosyaları ve tsconfig. Ücretsiz.

Basic types

14
let name: string = "Ada";
String type annotation
let age: number = 30;
Number (int and float)
let ok: boolean = true;
Boolean
let ids: number[] = [1, 2];
Array of numbers
let pair: [string, number] = ["a", 1];
Tuple: fixed-length typed array
let anything: unknown;
Safe any: must narrow before use
let loose: any;
Opts out of checking (avoid)
function log(): void {}
No return value
function fail(): never { throw new Error(); }
Never returns
let big: bigint = 9007199254740993n;
Arbitrary-precision integer
let id: string | null = null;
Nullable via union
const point = { x: 1 } as const;
Deep readonly literal types
enum Status { Active, Inactive }
Numeric enum
type Dir = "up" | "down";
String literal union (enum-lite)

Interfaces & type aliases

12
interface User { id: number; name: string; }
Object shape contract
type User = { id: number; name: string };
Type alias for a shape
interface User { nickname?: string; }
Optional property
interface User { readonly id: number; }
Property cannot be reassigned
interface Admin extends User { role: string; }
Interface inheritance
type Admin = User & { role: string };
Extend an alias via intersection
interface Dict { [key: string]: number; }
Index signature
interface Fn { (x: number): string; }
Callable interface
interface User { greet(): void; }
Method signature
interface Box<T> { value: T; }
Generic interface
interface Window { myGlobal: string; }
Declaration merging (augment)
type Point = Readonly<{ x: number }>;
Readonly wrapper on an alias

Unions, intersections & narrowing

12
type Id = string | number;
Union: one of several types
type Full = A & B;
Intersection: all members of both
if (typeof id === "string") { ... }
typeof narrowing
if (el instanceof HTMLElement) { ... }
instanceof narrowing
if ("radius" in shape) { ... }
in-operator narrowing
if (value != null) { ... }
Strip null AND undefined
switch (shape.kind) { case "circle": ... }
Discriminated union switch
type Shape = Circle | Square;
Discriminated union (kind field)
const x = cond ? a : b;
Result type is a union of both
user?.address?.city
Optional chaining
const name = input ?? "default";
Nullish coalescing
function assertNever(x: never): never { throw x; }
Exhaustiveness check helper

Generics

11
function first<T>(arr: T[]): T { return arr[0]; }
Generic function
first<string>(["a", "b"])
Explicit type argument
interface Box<T> { value: T; }
Generic interface
class Stack<T> { items: T[] = []; }
Generic class
type Pair<K, V> = { key: K; value: V };
Generic type alias
<T extends { id: number }>
Constrain the type parameter
<T, K extends keyof T>(obj: T, key: K): T[K]
Typed property access
<T = string>
Default type parameter
function wrap<const T>(v: T): T[]
const modifier keeps literals
type Flatten<T> = T extends Array<infer U> ? U : T;
Extract inner type with infer
const map = new Map<string, User>();
Generic built-in collections

Utility types

14
Partial<User>
All properties optional
Required<User>
All properties required
Readonly<User>
All properties readonly
Pick<User, "id" | "name">
Keep only the listed keys
Omit<User, "password">
Drop the listed keys
Record<string, number>
Object map of key to value type
Exclude<T, U>
Remove U members from union T
Extract<T, U>
Keep only U members of union T
NonNullable<T>
Strip null and undefined
ReturnType<typeof fn>
Type a function returns
Parameters<typeof fn>
Tuple of a function's params
Awaited<Promise<string>>
Unwrap promise type → string
InstanceType<typeof MyClass>
Instance type from a class
Uppercase<"id"> / Capitalize<"id">
String-literal case transforms

Functions & overloads

11
function add(a: number, b: number): number
Typed parameters and return
const add = (a: number, b: number) => a + b;
Arrow function (return inferred)
function log(msg: string, level?: string)
Optional parameter
function log(msg: string, level = "info")
Default parameter value
function sum(...nums: number[]): number
Rest parameters
type Handler = (e: Event) => void;
Function type alias
function get(id: number): User; function get(ids: number[]): User[]; function get(x: any): any { ... }
Overload signatures + one impl
function fn(this: HTMLElement, e: Event)
Typed this parameter
async function load(): Promise<User>
Async returns a Promise
function isUser(x: unknown): x is User
Type predicate return
const fn: typeof otherFn = ...;
Reuse another function's type

Classes

12
class User { constructor(public name: string) {} }
Parameter property shorthand
private secret: string;
Compile-time private member
#secret: string;
Runtime private field (ES)
protected id: number;
Visible to subclasses only
readonly createdAt = new Date();
Assign once, in ctor only
static create(): User { return new User(); }
Static factory method
class Admin extends User { ... }
Inheritance (use super())
class Api implements Fetcher { ... }
Implement an interface
abstract class Shape { abstract area(): number; }
Abstract base class
get fullName(): string { return ...; }
Getter accessor
override toString(): string { ... }
Explicit override (safer)
declare id: number;
Declare without initializing

Type guards & assertions

11
function isUser(x: unknown): x is User
Custom type guard
function assertUser(x: unknown): asserts x is User
Assertion function
function assertOk(x: unknown): asserts x
Assert truthy (non-null after)
const el = input as HTMLInputElement;
Type assertion (cast)
value!
Non-null assertion (careful!)
x as unknown as Y
Double assertion (last resort)
const roles = ["admin", "user"] as const;
Literal tuple via const assert
if (Array.isArray(value)) { ... }
Built-in array guard
satisfies Record<string, string>
Check shape, keep inference
typeof x === "object" && x !== null
Safe object check (null trap)
catch (e) { if (e instanceof Error) ... }
Narrow the unknown catch var

Mapped & conditional types

12
type Flags<T> = { [K in keyof T]: boolean };
Mapped type over keys
{ [K in keyof T]?: T[K] }
Add ? modifier (Partial)
{ [K in keyof T]-?: T[K] }
Remove ? modifier (Required)
{ readonly [K in keyof T]: T[K] }
Add readonly to all keys
{ -readonly [K in keyof T]: T[K] }
Strip readonly (Mutable)
{ [K in keyof T as `get${Capitalize<string & K>}`]: () => T[K] }
Key remapping with as
type IsString<T> = T extends string ? true : false;
Conditional type
T extends (infer U)[] ? U : never
infer inside a conditional
type Keys = keyof User;
Union of property names
type Value = User["name"];
Indexed access type
type Route = `/users/${number}`;
Template literal type
T extends any ? T[] : never
Distribute over union members

Modules & declaration files

12
export interface User { ... }
Named export
export default class Api { ... }
Default export
import { User } from "./user";
Named import
import type { User } from "./user";
Type-only import (erased)
export type { User };
Type-only re-export
import * as path from "node:path";
Namespace import
declare module "my-lib" { ... }
Type an untyped package
declare global { interface Window { ... } }
Augment global scope
declare const VERSION: string;
Ambient declaration (.d.ts)
export {};
Force a file to be a module
/// <reference types="node" />
Triple-slash type reference
npm i -D @types/lodash
Install community typings

tsconfig essentials

13
"strict": true
Enable all strict checks (do it)
"target": "ES2022"
Output JavaScript version
"module": "ESNext"
Emitted module system
"moduleResolution": "bundler"
Resolution for Vite/esbuild
"noEmit": true
Type-check only, no output
"esModuleInterop": true
Smooth CommonJS default imports
"skipLibCheck": true
Skip checking .d.ts files
"noUncheckedIndexedAccess": true
arr[i] becomes T | undefined
"paths": { "@/*": ["./src/*"] }
Import path aliases
"outDir": "./dist", "rootDir": "./src"
Output / source directories
"sourceMap": true, "declaration": true
Emit .map and .d.ts files
npx tsc --noEmit
CI type-check command
npx tsc --init
Generate a tsconfig.json

“:q” ile eşleşen bir girdi yok.


TypeScript Cheat Sheet Hakkında

Bu TypeScript cheat sheet, tür sistemini tek bir aranabilir sayfaya dönüştürür: temel türler, arayüzler ve tür takma adları, birleşimler, kesişimler ve daraltma, generics, yerleşik utility türleri, fonksiyonlar ve aşırı yüklemeler, sınıflar, tür koruyucuları ve iddialar, eşlenmiş ve koşullu türler, modüller ve bildirim dosyaları ve önemli tsconfig seçenekleri.

Günlük çalışma için yazılmıştır — bir generic kısıtlamanın tam yapısı, Pick, Omit, Record ve ReturnType'ın ne yaptığı, ayrımlı bir birleşimin nasıl daraldığı, ne zaman bir dönüşüm yerine `satisfies` kullanılacağı — böylece el kitabı için editörünüzden ayrılmadan bir ayrıntıyı kontrol edebilirsiniz.

Bu gruptaki her cheat sheet gibi ücretsiz ve istemci tarafındadır: arama kutusuyla satırları canlı olarak filtreleyin, yapışkan içindekiler tablosundan bölümler arasında atlayın, herhangi bir kod parçasını tek tıklamayla kopyalayın ve sayfayı masanızda referans olarak yazdırın.

TypeScript Cheat Sheet Nasıl Kullanılır

  1. Sayfayı açın ve bölümleri gözden geçirin, Temel türler ve Generics'ten tsconfig temellerine kadar.
  2. Partial, narrowing veya satisfies gibi bir anahtar kelime arayarak her satırı canlı olarak filtreleyin.
  3. Gelişmiş tür düzeyinde söz dizimine ihtiyacınız olduğunda Utility türleri veya Eşlenmiş ve koşullu türler bölümüne atlayın.
  4. TypeScript'i panonuza kopyalamak için bir kod parçasına veya kopyala simgesine tıklayın.
  5. Tam TypeScript referansının kağıt kopyası için Yazdır'ı kullanın.

Sıkça sorulan sorular

On bir bölüm: temel türler, arayüzler ve tür takma adları, birleşimler ve daraltma, generics, utility türleri, fonksiyonlar ve aşırı yüklemeler, sınıflar, tür koruyucuları ve iddialar, eşlenmiş ve koşullu türler, modüller ve bildirim dosyaları ve tsconfig temelleri.

Evet. Özel bir bölüm Partial, Required, Readonly, Pick, Omit, Record, Exclude, Extract, ReturnType, Awaited ve diğerlerini tek satırlık açıklamalarla kapsar.

Çok. Ayrı bölümler typeof ve instanceof daraltması, ayrımlı birleşimler, kullanıcı tanımlı tür yüklemleri, iddia fonksiyonları ve bir dönüşüm ile `satisfies` arasındaki farkı gösterir.

Evet. Herhangi bir satırdaki koda veya kopyala simgesine tıklayın, anında panonuza kopyalanır.

Evet, tamamen ücretsiz ve tarayıcınızda giriş yapmadan çalışır.


Popüler aramalar
typescript cheat sheet typescript türleri typescript utility türleri typescript generics typescript interface vs type tsconfig seçenekleri typescript referansı
Yardıma mı ihtiyacınız var?
Bu araçta bir sorun mu buldunuz? Ekibimize bildirin.
Sorun bildir

Bu ücretsiz aracı kendi web sitenize ekleyin — aşağıdaki kodu kopyalayıp yapıştırın.