t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
31 lines (30 loc) • 1.06 kB
TypeScript
import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, CSSProperties, ComputedRef } from 'vue';
declare const _sfc_main: DefineComponent<{
readonly height: {
readonly type: PropType<string | number>;
readonly default: () => string;
};
readonly padding: {
readonly type: PropType<string | number>;
readonly default: () => string;
};
}, {
prop: {
readonly height?: unknown;
readonly padding?: unknown;
} & {
padding: string | number;
height: string | number;
} & {};
styleList: ComputedRef<CSSProperties>;
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
readonly height?: unknown;
readonly padding?: unknown;
} & {
padding: string | number;
height: string | number;
} & {}>, {
padding: string | number;
height: string | number;
}>;
export default _sfc_main;