@loopback/repository
Version:
Define and implement a common set of interfaces for interacting with databases
13 lines (12 loc) • 326 B
TypeScript
import { Type } from './type';
/**
* Null type
*/
export declare class NullType implements Type<null> {
readonly name = "boolean";
isInstance(value: any): boolean;
defaultValue(): null;
isCoercible(value: any): boolean;
coerce(value: any): null;
serialize(value: boolean | null | undefined): null;
}