ui-lit
Version:
UI Elements on LIT
12 lines (11 loc) • 385 B
TypeScript
import { TemplateResult } from 'lit';
import { FormAssociatedProps } from '../mixins/form-associated/interface';
export declare type TSelectItem = {
content: string | TemplateResult;
value: string;
};
export declare type TListboxPosition = 'auto' | 'top';
export interface IPropsSelect extends FormAssociatedProps {
multiple: boolean;
searchable: boolean;
}