mirror of
https://github.com/zadam/trilium.git
synced 2025-11-05 21:05:55 +01:00
7 lines
200 B
TypeScript
7 lines
200 B
TypeScript
|
|
import { Request } from "express";
|
||
|
|
import { Content } from "./Content";
|
||
|
|
/**
|
||
|
|
* @type {function (Request): Promise<Content>}
|
||
|
|
*/
|
||
|
|
export type ContentProvider = (req: Request) => Promise<Content>;
|