t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
80 lines (79 loc) • 2.54 kB
TypeScript
import type { ListSizeType } from './interface';
import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComputedRef, CSSProperties } from 'vue';
import type { ClassListInterface as a } from '../../_interface';
declare const _sfc_main: DefineComponent<{
readonly listStyle: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly zebra: {
readonly type: BooleanConstructor;
readonly default: () => boolean;
};
readonly center: {
readonly type: BooleanConstructor;
readonly default: () => boolean;
};
readonly textColor: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly borderColor: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly size: {
readonly type: PropType<ListSizeType>;
readonly default: () => ListSizeType;
readonly validator: (val: ListSizeType) => boolean;
};
readonly maxHeight: {
readonly type: PropType<string | number>;
readonly default: () => string;
};
}, {
prop: {
readonly listStyle?: unknown;
readonly zebra?: unknown;
readonly center?: unknown;
readonly textColor?: unknown;
readonly borderColor?: unknown;
readonly size?: unknown;
readonly maxHeight?: unknown;
} & {
center: boolean;
size: ListSizeType;
textColor: string;
borderColor: string;
listStyle: string;
zebra: boolean;
maxHeight: string | number;
} & {};
classList: ComputedRef<a>;
styleLIst: ComputedRef<CSSProperties>;
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
readonly listStyle?: unknown;
readonly zebra?: unknown;
readonly center?: unknown;
readonly textColor?: unknown;
readonly borderColor?: unknown;
readonly size?: unknown;
readonly maxHeight?: unknown;
} & {
center: boolean;
size: ListSizeType;
textColor: string;
borderColor: string;
listStyle: string;
zebra: boolean;
maxHeight: string | number;
} & {}>, {
center: boolean;
size: ListSizeType;
textColor: string;
borderColor: string;
listStyle: string;
zebra: boolean;
maxHeight: string | number;
}>;
export default _sfc_main;