mirror of
https://github.com/TriliumNext/Notes.git
synced 2026-01-01 10:30:04 -06:00
12 lines
356 B
TypeScript
12 lines
356 B
TypeScript
import type { 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;
|
|
}
|