4 lines
172 B
TypeScript
4 lines
172 B
TypeScript
import type { CreateIndexesOptions, IndexSpecification } from "mongodb";
|
|
|
|
export const idIndex: [IndexSpecification, CreateIndexesOptions] = [{ id: 1 }, { unique: true }];
|