express-rest-decorators - v1.0.0-rc.2
    Preparing search index...

    Interface ActionMetadata

    interface ActionMetadata {
        authorized?: string[] | null;
        input?: InputDeclaration;
        interceptors: Function[];
        location?: { template: string };
        method: string | symbol;
        paramTypes?: Function[];
        path: string;
        redirect?: { status?: number; template: string };
        render?: { template: string };
        responseHandlers: ResponseHandlerArgs[];
        returnType?: Function;
        target: Function;
        useAfter: HookEntry[];
        useBefore: HookEntry[];
        verb: string;
    }
    Index

    Properties

    authorized?: string[] | null
    interceptors: Function[]
    location?: { template: string }
    method: string | symbol
    paramTypes?: Function[]
    path: string
    redirect?: { status?: number; template: string }
    render?: { template: string }
    responseHandlers: ResponseHandlerArgs[]
    returnType?: Function
    target: Function
    useAfter: HookEntry[]
    useBefore: HookEntry[]
    verb: string