mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 21:00:01 +08:00
21 lines
675 B
TypeScript
21 lines
675 B
TypeScript
// Type definitions for mongoose-auto-increment 5.0.1
|
|
// Project: https://github.com/codetunnel/mongoose-auto-increment
|
|
// Definitions by: Aya Morisawa <https://github.com/AyaMorisawa>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference path="../mongoose/mongoose.d.ts" />
|
|
|
|
declare module 'mongoose-auto-increment' {
|
|
import { Connection, Schema, Mongoose } from 'mongoose';
|
|
|
|
/**
|
|
* Initialize plugin by creating counter collection in database.
|
|
*/
|
|
function initialize(connection: Connection): void;
|
|
|
|
/**
|
|
* The function to use when invoking the plugin on a custom schema.
|
|
*/
|
|
function plugin(schema: Schema, options: Object): void;
|
|
}
|