UNPKG

@sectester/core

Version:

The core package can be used to obtain a config including credentials from different sources, and provide a simplified abstraction to handle events and commands.

8 lines (7 loc) 252 B
export interface NumBoundaries { min?: number; max?: number; exclusiveMin?: boolean; exclusiveMax?: boolean; } export declare const checkBoundaries: (value: unknown, { min, max, exclusiveMax, exclusiveMin }?: NumBoundaries) => boolean;