mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
11 lines
341 B
TypeScript
11 lines
341 B
TypeScript
import { Request, Response } from "express";
|
|
import AbstractBeccaEntity = require("../becca/entities/abstract_becca_entity");
|
|
import BNote = require("../becca/entities/bnote");
|
|
|
|
export interface ApiParams {
|
|
startNote?: BNote;
|
|
originEntity?: AbstractBeccaEntity<any>;
|
|
pathParams?: string[],
|
|
req?: Request,
|
|
res?: Response
|
|
} |