source: trip-planner-front/node_modules/@angular/material/core/option/optgroup.d.ts.__ivy_ngcc_bak@ e29cc2e

Last change on this file since e29cc2e was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.5 KB
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 */
8import { BooleanInput } from '@angular/cdk/coercion';
9import { InjectionToken } from '@angular/core';
10import { CanDisable } from '../common-behaviors/disabled';
11import { MatOptionParentComponent } from './option-parent';
12/** @docs-private */
13declare const _MatOptgroupMixinBase: import("@angular/material/core/common-behaviors/constructor").Constructor<CanDisable> & import("@angular/material/core/common-behaviors/constructor").AbstractConstructor<CanDisable> & {
14 new (): {};
15};
16export declare class _MatOptgroupBase extends _MatOptgroupMixinBase implements CanDisable {
17 /** Label for the option group. */
18 label: string;
19 /** Unique id for the underlying label. */
20 _labelId: string;
21 /** Whether the group is in inert a11y mode. */
22 _inert: boolean;
23 constructor(parent?: MatOptionParentComponent);
24 static ngAcceptInputType_disabled: BooleanInput;
25}
26/**
27 * Injection token that can be used to reference instances of `MatOptgroup`. It serves as
28 * alternative token to the actual `MatOptgroup` class which could cause unnecessary
29 * retention of the class and its component metadata.
30 */
31export declare const MAT_OPTGROUP: InjectionToken<MatOptgroup>;
32/**
33 * Component that is used to group instances of `mat-option`.
34 */
35export declare class MatOptgroup extends _MatOptgroupBase {
36}
37export {};
Note: See TracBrowser for help on using the repository browser.