UNPKG

454 BTypeScriptView Raw
1import { ValidationOptions } from '../ValidationOptions';
2export declare const IS_OBJECT = "isObject";
3/**
4 * Checks if the value is valid Object.
5 * Returns false if the value is not an object.
6 */
7export declare function isObject(value: unknown): value is object;
8/**
9 * Checks if the value is valid Object.
10 * Returns false if the value is not an object.
11 */
12export declare function IsObject(validationOptions?: ValidationOptions): PropertyDecorator;