blob: 4ab2f60f69f862a73d18e444e61a609a8c2a9af6 [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 CanDisableRipple {
/** Whether ripples are disabled. */
disableRipple: boolean;
}
/** @docs-private */
export declare type CanDisableRippleCtor = Constructor<CanDisableRipple>;
/** Mixin to augment a directive with a `disableRipple` property. */
export declare function mixinDisableRipple<T extends Constructor<{}>>(base: T): CanDisableRippleCtor & T;