1
0
Fork 0
mirror of https://github.com/elk-zone/elk.git synced 2025-03-20 23:22:00 +03:00
elk/types/utils.ts

4 lines
61 B
TypeScript
Raw Normal View History

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