Skip to content

Latest commit

 

History

History
140 lines (100 loc) · 2.82 KB

TypeScript 工具类型 — Utility Types.md

File metadata and controls

140 lines (100 loc) · 2.82 KB

TypeScript 工具类型 — Utility Types

TypeScript 附带了大量内置工具类型,可以帮助进行一些常见的类型操作,通常称为 Utility Types

本章介绍了最常用的工具类型。

Partial

Partial 将对象中的所有属性更改为可选

interface Point {
  x: number
  y: number
}

let pointPart: Partial<Point> = {} // Partial 允许 x 和 y 是可选的
pointPart.x = 10

Required

Required 将对象中的所有属性更改为必选。与 Partial 相反。

interface User {
  name?: string
  age?: number
}

const user: User = { name: 'O.O' }
const user2: Required<User> = { name: 'O.O' } // Type Error

Readonly

Readonly 将对象中的所有属性更改为只读

interface User {
  name?: string
  age?: number
}

const user: User = { name: 'O.O' }
const user2: Readonly<User> = { name: 'O.O' }

user2.name = 'D.O' // Type Error

Record

Record 是定义具有特定键类型和值类型的对象类型的快捷方式。

const nameAgeMap: Record<string, number> = {
  KAI: 27,
  LAY: 30
}

Record<string, number> 相当于 { [key: string]: number }

Omit

Omit 从对象类型中删除指定键。

interface Person {
  name: string
  age: number
  location?: string
}

// Omit 从类型中删除了 age 和 location,不能在此处定义
const user: Omit<Person, 'age' | 'location'> = {
  name: 'D.O'
}

Pick

Pick 从对象类型中删除除指定键以外的所有键。与 Omit 相反。

interface Person {
  name: string
  age: number
  location?: string
}

// Pick 只保留了 name,因此 age 和 location 已从类型中删除,无法在此处定义
const user: Pick<Person, 'name'> = {
  name: 'O.O'
}

Exclude

Exclude 从联合中删除类型。

type Primitive = string | number | boolean

const value: Exclude<Primitive, string> = true // 此处不能使用字符串,因为 Exclude 将其从类型中删除。

ReturnType

ReturnType 获取函数类型的返回值类型。

type foo = () => {
  x: number
  y: number
}

const point: ReturnType<foo> = {
  x: 10,
  y: 20
}

Parameters

Parameters 将函数类型的参数类型提取为数组。

type PointPrinter = (p: { x: number; y: number }) => void
const point: Parameters<PointPrinter>[0] = {
  x: 10,
  y: 20
}

更多资料