Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1016 bytes
|
Line | |
---|
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.io/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[];
|
---|
Note:
See
TracBrowser
for help on using the repository browser.