zview-plus
Version:
基于 Vue3 的 UI 组件库
19 lines (18 loc) • 460 B
TypeScript
import { ExtractPropTypes, PropType } from "vue";
export interface TimeAxisItem {
time: number | string;
title: string;
content: string;
src: string;
}
export declare const TimeAxisProps: {
timeAxisItems: {
type: PropType<TimeAxisItem[]>;
default: never[];
};
single: {
type: BooleanConstructor;
default: boolean;
};
};
export declare type TimeAxisProps = ExtractPropTypes<typeof TimeAxisProps>;