Interface WrakerAppRequestConstructorOptions

interface WrakerAppRequestConstructorOptions {
    body: any;
    headers: EventHeaders;
    method: Method;
    path: string;
    sendErrorFn: ((args: WrakerErrorResponse) => void);
    sendFn: ((args: WrakerSuccessResponse) => void);
}

Hierarchy (view full)

Properties

body: any
headers: EventHeaders
method: Method
path: string
sendErrorFn: ((args: WrakerErrorResponse) => void)
sendFn: ((args: WrakerSuccessResponse) => void)