# Next Decorator operation input

Module
import { Next } from "@tsed/common"
Source/packages/common/src/mvc/decorators/params/next.ts

# Overview

function Next(): ParameterDecorator;
global {
    namespace TsED {
        interface NextFunction extends Function {
        }
    }
}
/**
 * Get the Next function (for express application and middleware).
 *
 * @decorator
 * @operation
 * @input
 */
export type Next = TsED.NextFunction;

# Description

Get the Next function (for express application and middleware).