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 | import { ElementRef } from '@angular/core';
|
---|
9 | /** Base class containing all of the functionality for `MatAutocompleteOrigin`. */
|
---|
10 | import * as ɵngcc0 from '@angular/core';
|
---|
11 | export declare abstract class _MatAutocompleteOriginBase {
|
---|
12 | /** Reference to the element on which the directive is applied. */
|
---|
13 | elementRef: ElementRef<HTMLElement>;
|
---|
14 | constructor(
|
---|
15 | /** Reference to the element on which the directive is applied. */
|
---|
16 | elementRef: ElementRef<HTMLElement>);
|
---|
17 | static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<_MatAutocompleteOriginBase, never>;
|
---|
18 | static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<_MatAutocompleteOriginBase, never, never, {}, {}, never>;
|
---|
19 | }
|
---|
20 | /**
|
---|
21 | * Directive applied to an element to make it usable
|
---|
22 | * as a connection point for an autocomplete panel.
|
---|
23 | */
|
---|
24 | export declare class MatAutocompleteOrigin extends _MatAutocompleteOriginBase {
|
---|
25 | static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<MatAutocompleteOrigin, never>;
|
---|
26 | static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<MatAutocompleteOrigin, "[matAutocompleteOrigin]", ["matAutocompleteOrigin"], {}, {}, never>;
|
---|
27 | }
|
---|
28 |
|
---|
29 | //# sourceMappingURL=autocomplete-origin.d.ts.map |
---|