Type Alias TupleParts<Parts, IsExact, IsReadonly>

TupleParts: {
    [Index in keyof Parts]: SpecifierToRuntimeType<
        Parts[Index],
        IsExact,
        IsReadonly,
    >
}

Type Parameters

  • Parts extends ReadonlyArray<any>
  • IsExact extends boolean
  • IsReadonly extends boolean