Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

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

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

Adds static "class" methods to Models compiled from this schema.

Type Parameters

K extends keyof TStaticMethods

Parameters

name: K
fn: TStaticMethods[K]

Parameters

obj: [F in keyof TStaticMethods]: TStaticMethods[F] & { [name: string]: (this: M, ...args: any[]) => any; }

Parameters

name: string
fn: (this: M, ...args: any[]) => any