Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 358 Bytes

IDatabaseConfiguration.md

File metadata and controls

15 lines (12 loc) · 358 Bytes

IDatabaseConfiguration Interface

Represents the configuration object of the QuickMongo database instance.

Implementation

export interface IDatabaseConfiguration {
    name: string
    collectionName?: string
}
  • Properties:
    • name (string): MongoDB database name.
    • collectionName (string): MongoDB collection name.