1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-09 07:46:48 +01:00
elk/types/utils.ts
2022-11-24 17:22:29 +08:00

4 lines
61 B
TypeScript

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