fix capped option interface

This commit is contained in:
Maksim Sharnin
2017-01-14 02:07:07 +07:00
parent 0584ef8f74
commit 39840a0f97
+3 -3
View File
@@ -310,9 +310,9 @@ declare module "mongoose" {
}
interface CappedOptions {
size: number,
max?: number,
autoIndexId?: boolean
size: number;
max?: number;
autoIndexId?: boolean;
}
export interface SchemaOption {