import type { Request, Response } from "express"; import type AbstractBeccaEntity from "../becca/entities/abstract_becca_entity.js"; import type BNote from "../becca/entities/bnote.js"; export interface ApiParams { startNote?: BNote | null; originEntity?: AbstractBeccaEntity | null; pathParams?: string[]; req?: Request; res?: Response; }