/** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: BSD-3-Clause */ import type { ReactiveElement } from '../reactive-element.js'; import { type Interface } from './base.js'; export type QueryAllDecorator = { (proto: Interface, name: PropertyKey, descriptor?: PropertyDescriptor): void | any; , V extends NodeList>(value: ClassAccessorDecoratorTarget, context: ClassAccessorDecoratorContext): ClassAccessorDecoratorResult; }; /** * A property decorator that converts a class property into a getter * that executes a querySelectorAll on the element's renderRoot. * * @param selector A DOMString containing one or more selectors to match. * * See: * https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelectorAll * * ```ts * class MyElement { * @queryAll('div') * divs: NodeListOf; * * render() { * return html` *
*
* `; * } * } * ``` * @category Decorator */ export declare function queryAll(selector: string): QueryAllDecorator; //# sourceMappingURL=query-all.d.ts.map