Files
HRM-System/node_modules/es-toolkit/dist/compat/_internal/RejectReadonly.d.d.mts
2026-04-13 09:30:59 +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 };