mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 02:52:27 +08:00
7 lines
194 B
TypeScript
7 lines
194 B
TypeScript
import { Request } from "express";
|
|
import { Content } from "./Content";
|
|
/**
|
|
* @type {function (Request): Promise<Content>}
|
|
*/
|
|
export type ContentProvider = (req: Request) => Promise<Content>;
|