UNPKG

@arthurgubaidullin/nx-embed-dependencies

Version:

This plugin for [Nx](https://nx.dev) helps injecting local dependencies into a package.

17 lines (16 loc) 322 B
/** * @since 0.4.3 */ import * as t from 'io-ts' /** * Returns a clone of the given codec * * @example * import { clone } from 'io-ts-types/es6/clone' * import * as t from 'io-ts' * * assert.deepStrictEqual(clone(t.string), t.string) * * @since 0.4.3 */ export declare function clone<C extends t.Any>(t: C): C