blob: a87264563b5d67822845a4280e03a9f7323e92e7 [file] [log] [blame]
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { Constructor } from './constructor';
/** @docs-private */
export interface CanDisable {
/** Whether the component is disabled. */
disabled: boolean;
}
/** @docs-private */
export declare type CanDisableCtor = Constructor<CanDisable>;
/** Mixin to augment a directive with a `disabled` property. */
export declare function mixinDisabled<T extends Constructor<{}>>(base: T): CanDisableCtor & T;