UNPKG

@loopback/repository

Version:

Define and implement a common set of interfaces for interacting with databases

13 lines (12 loc) 293 B
import { Type } from './type'; /** * Any type */ export declare class AnyType implements Type<any> { readonly name = "any"; isInstance(value: any): boolean; isCoercible(value: any): boolean; defaultValue(): any; coerce(value: any): any; serialize(value: any): any; }