1
0
Fork 0
mirror of https://github.com/elk-zone/elk.git synced 2025-03-16 05:03:28 +03:00
elk/types/utils.ts
2022-11-24 17:22:29 +08:00

3 lines
61 B
TypeScript

export type Mutable<T> = {
-readonly[P in keyof T]: T[P]
}