mirror of
https://github.com/TriliumNext/Notes.git
synced 2026-05-05 03:39:13 -05:00
chore(monorepo/server): move server-side source code
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import type { Request, Response } from "express";
|
||||
import type AbstractBeccaEntity from "../becca/entities/abstract_becca_entity.js";
|
||||
import type BNote from "../becca/entities/bnote.js";
|
||||
|
||||
export interface ApiParams {
|
||||
startNote?: BNote | null;
|
||||
originEntity?: AbstractBeccaEntity<any> | null;
|
||||
pathParams?: string[];
|
||||
req?: Request;
|
||||
res?: Response;
|
||||
}
|
||||
Reference in New Issue
Block a user