/* * Copyright (c) 2025, Shannon Booth * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace URL::Pattern { // https://urlpattern.spec.whatwg.org/#typedefdef-urlpatterninput using Input = Variant; // https://urlpattern.spec.whatwg.org/#dictdef-urlpatternoptions struct Options { bool ignore_case { false }; }; }