t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
49 lines (48 loc) • 1.53 kB
TypeScript
import type { ListSizeType } from '../..';
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComputedRef, CSSProperties } from 'vue';
declare const _sfc_main: DefineComponent<{
readonly background: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly color: {
readonly type: StringConstructor;
readonly default: () => string;
};
}, {
prop: {
readonly background?: unknown;
readonly color?: unknown;
} & {
background: string;
color: string;
} & {};
injectListProps: {
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;
} & {};
styleList: ComputedRef<CSSProperties>;
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
readonly background?: unknown;
readonly color?: unknown;
} & {
background: string;
color: string;
} & {}>, {
background: string;
color: string;
}>;
export default _sfc_main;