@aplus-frontend/ui
Version:
37 lines (36 loc) • 870 B
TypeScript
import { PropType } from 'vue';
import { ApCopy } from './interface';
export declare const ApCopyProps: () => {
text: {
type: PropType<ApCopy["text"]>;
default: string;
};
size: {
type: PropType<ApCopy["size"]>;
default: number;
};
textStyle: {
type: PropType<ApCopy["textStyle"]>;
default: string;
};
link: {
type: PropType<ApCopy["link"]>;
default: string;
};
disableCopy: {
type: PropType<ApCopy["disableCopy"]>;
default: boolean;
};
onClick: {
type: PropType<ApCopy["onClick"]>;
default: () => void;
};
tipMessageSuccess: {
type: PropType<ApCopy["tipMessageSuccess"]>;
default: string;
};
tipMessageError: {
type: PropType<ApCopy["tipMessageError"]>;
default: string;
};
};