angular.d.ts 1017 B

123456789101112131415
  1. /**
  2. * @license
  3. * Copyright Google LLC All Rights Reserved.
  4. *
  5. * Use of this source code is governed by an MIT-style license that can be
  6. * found in the LICENSE file at https://angular.dev/license
  7. */
  8. /** Finds the specified Angular @Input in the given elements with tag name. */
  9. export declare function findInputsOnElementWithTag(html: string, inputName: string, tagNames: string[]): number[];
  10. /** Finds the specified Angular @Input in elements that have one of the specified attributes. */
  11. export declare function findInputsOnElementWithAttr(html: string, inputName: string, attrs: string[]): number[];
  12. /** Finds the specified Angular @Output in the given elements with tag name. */
  13. export declare function findOutputsOnElementWithTag(html: string, outputName: string, tagNames: string[]): number[];
  14. /** Finds the specified Angular @Output in elements that have one of the specified attributes. */
  15. export declare function findOutputsOnElementWithAttr(html: string, outputName: string, attrs: string[]): number[];