UNPKG

@k8ts/instruments

Version:

A collection of utilities and core components for k8ts.

14 lines (12 loc) 267 B
export type BuiltIn = | Function | Error | Date | { readonly [Symbol.toStringTag]: string } | RegExp | Generator export type WritableDeep<O> = { -readonly [K in keyof O]: O[K] extends BuiltIn ? O[K] : WritableDeep<O[K]> }