7 lines
279 B
TypeScript
Raw Normal View History

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