LendAndRegret/node_modules/es-toolkit/dist/compat/_internal/RejectReadonly.d.d.mts
2026-05-02 17:27:43 +08:00

7 lines
228 B
TypeScript

import { IsWritable } from './IsWritable.d.mjs';
import { MutableList } from './MutableList.d.mjs';
type RejectReadonly<T extends MutableList<unknown>> = IsWritable<T> extends true ? T : never;
export type { RejectReadonly };