t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
38 lines (37 loc) • 1.18 kB
TypeScript
import type { PropType, ExtractPropTypes } from 'vue';
import type { StickyCardEmitInterface } from './interface';
export declare const Props: {
readonly open: {
readonly type: BooleanConstructor;
readonly default: () => boolean;
};
readonly background: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly openText: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly closeText: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly openHeight: {
readonly type: PropType<string | number>;
readonly default: () => string;
};
readonly borderColor: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly openEnd: {
readonly type: PropType<StickyCardEmitInterface>;
readonly default: () => null;
};
readonly closeEnd: {
readonly type: PropType<StickyCardEmitInterface>;
readonly default: () => null;
};
};
export declare type StickyCardPropsType = ExtractPropTypes<typeof Props>;