Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MandarineMvc.CustomDecoratorExecutor

import type { MandarineMvc } from "https://raw.githubusercontent.com/mandarineorg/mandarinets/master/mvc-framework/mandarine-mvc.ns.ts"; 

const { CustomDecoratorExecutor } = MandarineMvc;

Interface used for the custom decorator executor. Custom Decorator Executor refers to the context of a mandarine-powered decorator created by the user.

type CustomDecoratorExecutor<DecoratorData = any, DecoratorReturn = any> = (context: Mandarine.Types.RequestContextAcessor, ...data: Array<DecoratorData>) => DecoratorReturn;

§Type Parameters

§
DecoratorData = any
[src]
§
DecoratorReturn = any
[src]

§Type

§
(context: Mandarine.Types.RequestContextAcessor, ...data: Array<DecoratorData>) => DecoratorReturn
[src]