UNPKG

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]

10 lines (9 loc) 458 B
import { AbstractConstructor, Constructor } from "./constructor"; import { HasElementRef } from "./has-element-ref"; export interface CanTabindex { tabindex: number | undefined; defaultTabindex?: number; } declare type CanTabindexCtor = Constructor<CanTabindex> & AbstractConstructor<CanTabindex>; export declare function mixinTabindex<T extends AbstractConstructor<HasElementRef>>(core: T, defaultTabindex?: number): CanTabindexCtor & T; export {};