t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
26 lines (25 loc) • 971 B
TypeScript
import type { DefineComponent, PropType, ComputedRef, CSSProperties, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
import type { InstallType } from '../_interface';
import Main from "./src/main";
export declare const FMain: InstallType<DefineComponent<{
readonly padding: {
readonly type: PropType<string | number>;
readonly default: () => string;
};
}, {
prop: {
readonly padding?: unknown;
} & {
padding: string | number;
} & {};
styleList: ComputedRef<CSSProperties>;
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
readonly padding?: unknown;
} & {
padding: string | number;
} & {}>, {
padding: string | number;
}>>;
export declare type MainInstance = InstanceType<typeof Main>;
export * from './src/interface.d';
export default Main;