t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
35 lines (34 loc) • 1.26 kB
TypeScript
import type { DefineComponent, PropType, ComputedRef, CSSProperties, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
import type { InstallType } from '../_interface';
import Header from "./src/header";
export declare const FHeader: InstallType<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 declare type HeaderInstance = InstanceType<typeof Header>;
export * from './src/interface.d';
export default Header;