Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 288 Bytes

two-tuple.md

File metadata and controls

18 lines (12 loc) · 288 Bytes
category
Basic Operation

TwoTuple

A Tuple consisting of two identical types.

Usage

import type { TwoTuple } from '@utype/core'

// Expect: [string, string] // [!code highlight]
type TestType = TwoTuple<string>