Notes/src/services/backend_script_api_interface.ts

12 lines
366 B
TypeScript
Raw Normal View History

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<any> | null;
2025-01-09 18:07:02 +02:00
pathParams?: string[];
req?: Request;
res?: Response;
}