UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

4 lines (3 loc) 199 B
import { IsWritable } from './IsWritable.d.ts'; import { MutableList } from './MutableList.d.ts'; export type RejectReadonly<T extends MutableList<unknown>> = IsWritable<T> extends true ? T : never;