UNPKG

@arthurgubaidullin/nx-embed-dependencies

Version:

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

21 lines (20 loc) 467 B
/** * @since 0.2.0 */ import { Prism } from 'monocle-ts'; import { Concat } from '.'; import { Integer } from './Integer'; import { NonNegative } from './NonNegative'; /** * @since 0.2.0 */ export interface NonNegativeInteger extends Concat<NonNegative, Integer> { } /** * @since 0.2.0 */ export declare const isNonNegativeInteger: (n: number) => boolean; /** * @since 0.2.0 */ export declare const prismNonNegativeInteger: Prism<number, NonNegativeInteger>;