interface MultipartAddonOptions {
    serialize?: (data: Record<string, unknown>) => FormData;
}

Properties

Properties

serialize?: (data: Record<string, unknown>) => FormData

serializer for the form data. given the form data it should return the body

basic FormData-based serializer