7 lines
281 B
TypeScript
Raw Permalink Normal View History

2026-05-31 13:21:13 +02:00
import { MutableList } from "./MutableList.mjs";
import { IsWritable } from "./IsWritable.mjs";
//#region src/compat/_internal/RejectReadonly.d.ts
type RejectReadonly<T extends MutableList<unknown>> = IsWritable<T> extends true ? T : never;
//#endregion
export { RejectReadonly };