import { ObjectID } from "mongodb"; export interface AppRepoStructureInterface { _id?: ObjectID; name: string; app_id: string; driver: string; channels?: ObjectID[]; default_channel?: ObjectID; driver_config?: { [key: string]: string; }; environment: "production" | "development" | "test"; createdAt?: Date; }