leonitousconforti/tinyburg

View on GitHub
packages/nucleus/src/parsing-structs/mutable.ts

Summary

Maintainability
A
0 mins
Test Coverage
// Helper definition to allow us to mutate a const type (such as the blocks) with new keys
export type Mutable<T> = { -readonly [P in keyof T]: T[P] };