UNPKG

@angular/material

Version:
8 lines (7 loc) 289 B
import { Constructor } from './constructor'; /** @docs-private */ export interface CanDisable { disabled: boolean; } /** Mixin to augment a directive with a `disabled` property. */ export declare function mixinDisabled<T extends Constructor<{}>>(base: T): Constructor<CanDisable> & T;