Skip to main content
Module

x/alosaur/src/metadata/param.ts

Alosaur - Deno web framework with many decorators
Very Popular
Go to Latest
File
import { ParamType } from "../types/param.ts";import { RequestBodyParseOptions } from "../models/request.ts";
export interface ParamMetadataArgs { type: ParamType; target: Object; method: string; // Index in function index: number; name?: string; transform?: any; bodyParseOptions?: RequestBodyParseOptions;}