2025-05-03 01:24:10 +03:00
|
|
|
import type { Request } from "express";
|
|
|
|
import type { Content } from "./Content.js";
|
2025-04-03 23:27:32 +02:00
|
|
|
/**
|
|
|
|
* @type {function (Request): Promise<Content>}
|
|
|
|
*/
|
|
|
|
export type ContentProvider = (req: Request) => Promise<Content>;
|