UNPKG

@angular/material

Version:
22 lines (21 loc) 827 B
/** * @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 { AbstractConstructor, Constructor } from './constructor'; /** @docs-private */ export interface CanDisableRipple { /** Whether ripples are disabled. */ disableRipple: boolean; } /** * @docs-private * @deprecated No longer necessary to apply to mixin classes. To be made private. * @breaking-change 13.0.0 */ export declare type CanDisableRippleCtor = Constructor<CanDisableRipple> & AbstractConstructor<CanDisableRipple>; /** Mixin to augment a directive with a `disableRipple` property. */ export declare function mixinDisableRipple<T extends AbstractConstructor<{}>>(base: T): CanDisableRippleCtor & T;