UNPKG

@k8ts/instruments

Version:

A collection of utilities and core components for k8ts.

7 lines 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]>; }; //# sourceMappingURL=types.d.ts.map