UNPKG

@tmlmobilidade/interfaces

Version:

This package provides SDK-style connectors for interacting with databases (e.g., stops, plans, rides, alerts) and external providers (e.g., authentication, storage). It simplifies data access and integration across projects.

18 lines (17 loc) 872 B
import { MongoCollectionClass } from '../../common/mongo-collection.js'; import { type SimplifiedVehicleEvent } from '@tmlmobilidade/types'; import { type IndexDescription } from 'mongodb'; declare class SimplifiedVehicleEventsClass extends MongoCollectionClass<SimplifiedVehicleEvent, SimplifiedVehicleEvent, SimplifiedVehicleEvent> { private static _instance; private constructor(); static getInstance(): Promise<SimplifiedVehicleEventsClass>; protected getCollectionIndexes(): IndexDescription[]; protected getCollectionName(): string; protected getEnvName(): string; } /** * @deprecated This collection is no longer used and will be removed in a future release. * Use `simplifiedVehicleEventsNew` instead, which is the SQL version of this collection. */ export declare const simplifiedVehicleEvents: SimplifiedVehicleEventsClass; export {};