UNPKG

ngx-mat-lib

Version:

A bunch of utilities and components to use in your Angular 7+ apps!

16 lines (15 loc) 681 B
import { ElementRef } from "@angular/core"; import { CanDisable, CanColor, ThemePalette } from "@angular/material"; import { Constructor } from "@angular/material/typings/core/common-behaviors/constructor"; /** @docs-private */ export declare class XmatActionTextBase { _elementRef: ElementRef; constructor(_elementRef: ElementRef); } export declare const _XmatActionMixinBase: Constructor<CanColor> & typeof XmatActionTextBase; export declare class XmatActionTextDirective extends _XmatActionMixinBase implements CanColor, CanDisable { _elementRef: ElementRef; color: ThemePalette; disabled: boolean; constructor(_elementRef: ElementRef); }