UNPKG

ui-lit

Version:

UI Elements on LIT

6 lines (5 loc) 280 B
import type { LitElement } from 'lit'; import { Focusable } from './inderface'; declare type Constructor<T> = new (...args: any[]) => T; export declare const focusable: <T extends Constructor<LitElement>>(superClass: T) => Constructor<Focusable & LitElement> & T; export {};