Files
Notes/src/services/backend_script_api_interface.ts
2025-01-09 18:36:24 +02:00

12 lines
356 B
TypeScript

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