sb-element
Version:
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 12.0.1. It is a component library constructed around the SCSS library [Sb-Theming](https://github.com/SeverinBuchser/SbTheming) and supports [Angular Schematics]
9 lines (8 loc) • 372 B
TypeScript
import { AbstractConstructor, Constructor } from "./constructor";
export interface CanDisable {
disabled: boolean;
setDisabledState(isDisabled: boolean): void;
}
declare type CanDisableCtor = Constructor<CanDisable> & AbstractConstructor<CanDisable>;
export declare function mixinDisable<T extends AbstractConstructor<{}>>(core: T): CanDisableCtor & T;
export {};