UNPKG

computed-types

Version:

Runtime validation types for TypeScript.

7 lines (6 loc) 378 B
import Validator from './Validator'; import FunctionType, { FunctionParameters } from './schema/FunctionType'; export declare class ObjectValidator<P extends FunctionParameters = [object]> extends Validator<FunctionType<object, P>> { } declare const object: import("./Validator").ValidatorProxy<ObjectValidator<[object]>, FunctionType<object, [object]>>; export default object;