Type Alias TestReqUrlEncodedBody

TestReqUrlEncodedBody: {
    data: StringInputs;
    type: "application/x-www-form-urlencoded";
}

A variant of TestReqBody representing a URL-encoded form body.

Use this when you want to simulate an application/x-www-form-urlencoded payload in tests. The data field is a StringInputs record of form field name/value pairs.

IMPORT_PATH: "@daiso-tech/core/http-router"