source: trip-planner-front/node_modules/@angular/material/core/common-behaviors/disable-ripple.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: 827 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 CanDisableRipple {
11 /** Whether ripples are disabled. */
12 disableRipple: 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 CanDisableRippleCtor = Constructor<CanDisableRipple> & AbstractConstructor<CanDisableRipple>;
20/** Mixin to augment a directive with a `disableRipple` property. */
21export declare function mixinDisableRipple<T extends AbstractConstructor<{}>>(base: T): CanDisableRippleCtor & T;
Note: See TracBrowser for help on using the repository browser.