hongluan-business-ui
Version:
Hongluan Business Component Library for Vue 3
20 lines (19 loc) • 483 B
TypeScript
import type { Indexable } from 'hongluan-business-ui/es/utils/types';
export interface SearchbarSelectors {
colCount: string;
items: Array<SelectorItem>;
}
export interface SelectorItem {
label?: string;
span?: string;
type: string;
value: unknown;
name: string;
display?: () => string;
prop?: {
label: string;
value: string;
};
options: SelectorItemOption[];
}
export declare type SelectorItemOption = Indexable<unknown>;