mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
13 lines
482 B
TypeScript
13 lines
482 B
TypeScript
// Type definitions for mongoose-deep-populate 2.0.3
|
|
// Project: https://github.com/buunguyen/mongoose-deep-populate
|
|
// Definitions by: Aya Morisawa <https://github.com/AyaMorisawa>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference path="../mongoose/mongoose.d.ts" />
|
|
|
|
declare module "mongoose-deep-populate" {
|
|
import { Mongoose, Schema } from 'mongoose';
|
|
|
|
export default function(mognoose: Mongoose): (schema: Schema, options: Object) => void;
|
|
}
|