UNPKG

@kamino-finance/klend-sdk

Version:

Typescript SDK for interacting with the Kamino Lending (klend) protocol

7 lines (6 loc) 112 B
/** * Undo the readonly modifier of a type */ export type Mutable<T> = { -readonly [K in keyof T]: T[K]; };