blob: 4c23e3b7d87b8333ce9d817eb8255c77da08cdf7 [file] [log] [blame]
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
/**
* Gets text of element excluding certain selectors within the element.
* @param element Element to get text from,
* @param excludeSelector Selector identifying which elements to exclude,
*/
export declare function _getTextWithExcludedElements(element: Element, excludeSelector: string): string;