mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-09-21 11:31:37 +08:00
12 lines
350 B
TypeScript
12 lines
350 B
TypeScript
import { 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
|
|
}
|