transButton.d.ts 933 B

12345678910111213141516171819202122232425262728293031323334
  1. declare const TransButton: import("vue").DefineComponent<{
  2. noStyle: {
  3. type: BooleanConstructor;
  4. default: any;
  5. };
  6. onClick: FunctionConstructor;
  7. disabled: {
  8. type: BooleanConstructor;
  9. default: any;
  10. };
  11. autofocus: {
  12. type: BooleanConstructor;
  13. default: any;
  14. };
  15. }, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
  16. noStyle: {
  17. type: BooleanConstructor;
  18. default: any;
  19. };
  20. onClick: FunctionConstructor;
  21. disabled: {
  22. type: BooleanConstructor;
  23. default: any;
  24. };
  25. autofocus: {
  26. type: BooleanConstructor;
  27. default: any;
  28. };
  29. }>>, {
  30. disabled: boolean;
  31. autofocus: boolean;
  32. noStyle: boolean;
  33. }, {}>;
  34. export default TransButton;