11 lines
188 B
TypeScript
11 lines
188 B
TypeScript
|
|
export type ClIndexBarPassThrough = {
|
||
|
|
className?: string;
|
||
|
|
};
|
||
|
|
|
||
|
|
export type ClIndexBarProps = {
|
||
|
|
className?: string;
|
||
|
|
pt?: ClIndexBarPassThrough;
|
||
|
|
modelValue?: number;
|
||
|
|
list?: string[];
|
||
|
|
};
|