1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-22 06:06:48 +01:00
elk/types/utils.ts

4 lines
61 B
TypeScript
Raw Normal View History

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