跳至主要內容

15. Last

鸭梨小于 1 分钟

15. Last

<题目描述>

::: playground#ts 15. Last

@file index.ts

// ============= Test Cases =============
import type { Equal, Expect } from '@type-challenges/utils'

type cases = [
  Expect<Equal<Last<[2]>, 2>>,
  Expect<Equal<Last<[3, 2, 1]>, 1>>,
  Expect<Equal<Last<[() => 123, { a: string }]>, { a: string }>>,
]

// ============= Your Code Here =============
type Last<T> = any

:::

点击查看答案
type Last<T extends any[]> = [any, ...T][T['length']]