Files

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;
}