Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/mongoose/types/index.d.ts>mongoose.VirtualType#set

MongoDB object modeling designed to work in an asynchronous environment.
Go to Latest
method mongoose.VirtualType.prototype.set
import { mongoose } from "https://deno.land/x/mongoose@6.13.0/types/index.d.ts";
const { VirtualType } = mongoose;

Adds a custom setter to this virtual.

Type Parameters

optional
T = HydratedDocType

Parameters

fn: (
this: T,
value: any,
virtualType: VirtualType<T>,
doc: T,
) => void