import { Request, Response } from "express"; import AbstractBeccaEntity = require("../becca/entities/abstract_becca_entity"); import BNote = require("../becca/entities/bnote"); export interface ApiParams { startNote?: BNote; originEntity?: AbstractBeccaEntity; pathParams?: string[], req?: Request, res?: Response }