mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 19:12:27 +08:00
12 lines
366 B
TypeScript
12 lines
366 B
TypeScript
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;
|
|
pathParams?: string[];
|
|
req?: Request;
|
|
res?: Response;
|
|
}
|