import { StageInterface } from "../core/stage.interface"; export interface LookupStageInterface { from: string; as: string; localField?: string; foreignField?: string; let?: { [key: string]: any; }; pipeline?: StageInterface[]; }