2026-05-31 13:54:31 +02:00

7 lines
279 B
TypeScript

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 };