elk/types/utils.ts

4 lines
61 B
TypeScript
Raw Normal View History

2022-11-24 10:15:58 +01:00
export type Mutable<T> = {
-readonly[P in keyof T]: T[P]
}