UNPKG

@arthurgubaidullin/nx-embed-dependencies

Version:

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

21 lines (20 loc) 371 B
/** * @since 0.2.0 */ import { Newtype } from '.'; import { Prism } from 'monocle-ts'; /** * @since 0.2.0 */ export interface Integer extends Newtype<{ readonly Integer: unique symbol; }, number> { } /** * @since 0.2.0 */ export declare const isInteger: (n: number) => boolean; /** * @since 0.2.0 */ export declare const prismInteger: Prism<number, Integer>;