UNPKG

@arthurgubaidullin/nx-embed-dependencies

Version:

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

21 lines (20 loc) 476 B
/** * @since 0.2.0 */ import { Prism } from 'monocle-ts'; import { Concat } from '.'; import { NonPositiveInteger } from './NonPositiveInteger'; import { NonZero } from './NonZero'; /** * @since 0.2.0 */ export interface NegativeInteger extends Concat<NonZero, NonPositiveInteger> { } /** * @since 0.2.0 */ export declare const isNegativeInteger: (n: number) => boolean; /** * @since 0.2.0 */ export declare const prismNegativeInteger: Prism<number, NegativeInteger>;