import type { Collection } from "mongodb"; import { getDb } from "../index"; import type { Lead } from "./leads.types"; export const getLeadsCollection = (): Collection => getDb().collection("leads");