source: trip-planner-front/node_modules/@angular/material/core/common-behaviors/disabled.d.ts@ 6a3a178

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

initial commit

  • Property mode set to 100644
File size: 787 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 */
8import { AbstractConstructor, Constructor } from './constructor';
9/** @docs-private */
10export interface CanDisable {
11 /** Whether the component is disabled. */
12 disabled: boolean;
13}
14/**
15 * @docs-private
16 * @deprecated No longer necessary to apply to mixin classes. To be made private.
17 * @breaking-change 13.0.0
18 */
19export declare type CanDisableCtor = Constructor<CanDisable> & AbstractConstructor<CanDisable>;
20/** Mixin to augment a directive with a `disabled` property. */
21export declare function mixinDisabled<T extends AbstractConstructor<{}>>(base: T): CanDisableCtor & T;
Note: See TracBrowser for help on using the repository browser.