Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Type aliases

Type aliases

Except

Except<ObjectType, KeysType>: Pick<ObjectType, Exclude<keyof ObjectType, KeysType>>

Type parameters

  • ObjectType

  • KeysType: keyof ObjectType

Merge

Merge<FirstType, SecondType>: Except<FirstType, Extract<keyof FirstType, keyof SecondType>> & SecondType

Type parameters

  • FirstType

  • SecondType

RecordPartial

RecordPartial<K, T>: {}

set of types Record + Partial Construct a type with a set of properties K of type T

Type parameters

  • K: keyof any

  • T

Type declaration

Generated using TypeDoc