1<?php
2
3// AUTOMATICALLY GENERATED.  DO NOT EDIT.
4// Use `composer build` to regenerate.
5
6namespace Wikimedia\IDLeDOM;
7
8/**
9 * XPathNSResolver
10 *
11 * @see https://dom.spec.whatwg.org/#callbackdef-xpathnsresolver
12 *
13 * @phan-forbid-undeclared-magic-properties
14 */
15interface XPathNSResolver {
16	/**
17	 * @param ?string $prefix
18	 * @return ?string
19	 */
20	public function lookupNamespaceURI( ?string $prefix ): ?string;
21
22}
23