chromium/third_party/blink/renderer/core/url_pattern/url_pattern_component_result.idl

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// https://wicg.github.io/urlpattern/
dictionary URLPatternComponentResult {
  USVString input;

  // TODO(crbug.com/1293259): Use `(USVString or undefined)` instead of `any`
  //                          when supported by the webidl compiler.
  record<USVString, any> groups;
};