Interface WrakerAppResponseConstructorOptions

interface WrakerAppResponseConstructorOptions {
    sendErrorFn: ((args: WrakerErrorResponse) => void);
    sendFn: ((args: WrakerSuccessResponse) => void);
}

Hierarchy (view full)

Properties

Properties

sendErrorFn: ((args: WrakerErrorResponse) => void)

The function to send an error response.

Type declaration

sendFn: ((args: WrakerSuccessResponse) => void)

The function to send the response.

Type declaration