mirror of
https://github.com/zadam/trilium.git
synced 2026-01-09 08:52:27 +01:00
13 lines
346 B
TypeScript
13 lines
346 B
TypeScript
import type { AbstractBeccaEntity } from "@triliumnext/core";
|
|
import type { Request, Response } from "express";
|
|
|
|
import type BNote from "../becca/entities/bnote.js";
|
|
|
|
export interface ApiParams {
|
|
startNote?: BNote | null;
|
|
originEntity?: AbstractBeccaEntity<any> | null;
|
|
pathParams?: string[];
|
|
req?: Request;
|
|
res?: Response;
|
|
}
|