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

x/mongoose/types/index.d.ts>mongoose.Schema#method

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

Adds an instance method to documents constructed from Models compiled from this schema.

Type Parameters

optional
Context = any

Parameters

name: string
fn: (this: Context, ...args: any[]) => any
optional
opts: any

Parameters

obj: Partial<TInstanceMethods>