mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
11 lines
349 B
TypeScript
11 lines
349 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
|
|
} |