Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Type aliases

Exclude<T, U>: T extends U ? never : T

Exclude from T those types that are assignable to U

Type parameters

  • T

  • U

Fact: Record<string, unknown>
Omit<T, K>: Pick<T, Exclude<keyof T, K>>

Construct a type with the properties of T except for those in type K.

Type parameters

  • T

  • K: keyof any

Pick<T, K>: { [ P in K]: T[P] }

From T, pick a set of properties whose keys are in the union K

Type parameters

  • T

  • K: keyof T

Record<K, T>: { [ P in K]: T }

Construct a type with a set of properties K of type T

Type parameters

  • K: keyof any

  • T

StorageCapability: UploadAll | UploadImport

Capabilities for UCAN.Storage services (e.g. NFT.Storage, Web3.Storage)

Generated using TypeDoc