@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.
14 lines (13 loc) • 764 B
TypeScript
import { MongoCollectionClass } from '../../mongo-collection.js';
import { type SimplifiedApexOnBoardRefund, type UpdateSimplifiedApexOnBoardRefundDto } from '@tmlmobilidade/types';
import { IndexDescription } from 'mongodb';
declare class SimplifiedApexOnBoardRefundsClass extends MongoCollectionClass<SimplifiedApexOnBoardRefund, SimplifiedApexOnBoardRefund, UpdateSimplifiedApexOnBoardRefundDto> {
private static _instance;
private constructor();
static getInstance(): Promise<SimplifiedApexOnBoardRefundsClass>;
protected getCollectionIndexes(): IndexDescription[];
protected getCollectionName(): string;
protected getEnvName(): string;
}
export declare const simplifiedApexOnBoardRefunds: SimplifiedApexOnBoardRefundsClass;
export {};