import { ObjectID } from "mongodb"; export interface DeviceRepoStructure { _id?: ObjectID; token: string; os: "android" | "ios"; arn_uri: string; version: number; app_environment: "production" | "development" | "test"; activate: boolean; createdAt?: Date; }