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