mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-29 00:51:29 +08:00
* Added support for ts2.3 default generic types * Updated find and findOne * Capitalized TypeScript Version * Added missing TypeScript Version: 2.3 * Added TypeScript Version: 2.3 to express-brute-mongo; removed easy-jsend test dependency on mongoose
10 lines
411 B
TypeScript
10 lines
411 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
|
|
// TypeScript Version: 2.3
|
|
|
|
import { Mongoose, Schema } from 'mongoose';
|
|
|
|
export default function(mognoose: Mongoose): (schema: Schema, options: Object) => void;
|