tav-ui
Version:
24 lines (23 loc) • 573 B
TypeScript
import type { ExtractPropTypes, PropType } from 'vue';
export declare type FlowType = number;
export declare const followProps: {
id: {
type: StringConstructor[];
required: boolean;
};
type: {
type: PropType<number>;
required: boolean;
};
showIcon: {
type: BooleanConstructor;
default: boolean;
};
initStatusApi: {
type: FunctionConstructor;
};
updateStatusApi: {
type: FunctionConstructor;
};
};
export declare type FollowProps = ExtractPropTypes<typeof followProps>;