UNPKG

@augment-vir/common

Version:

A collection of augments, helpers types, functions, and classes for any JavaScript environment.

11 lines (10 loc) 413 B
import { type Writable } from 'type-fest'; export type { Writable, WritableDeep } from 'type-fest'; /** * This function does nothing but return the input as a writable typed version of itself. * * @category Type * @category Package : @augment-vir/common * @package [`@augment-vir/common`](https://www.npmjs.com/package/@augment-vir/common) */ export declare function makeWritable<T>(input: T): Writable<T>;