1ab5549bb6009318266f4772421f4a32f7d48bd4da7bf9fc52efcfd0969544a4f4e54de719a5fd0c142f646c62c75742906ed15037b728008fcdcfbc5846a3 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. import { ExtractPropTypes } from 'vue';
  2. declare const borderBox11Props: {
  3. title: {
  4. type: StringConstructor;
  5. default: string;
  6. };
  7. titleWidth: {
  8. type: NumberConstructor;
  9. default: number;
  10. };
  11. animate: {
  12. type: BooleanConstructor;
  13. default: boolean;
  14. };
  15. color: {
  16. type: PropType<Array<string>>;
  17. default: () => never[];
  18. };
  19. backgroundColor: {
  20. type: StringConstructor;
  21. default: string;
  22. };
  23. };
  24. export type BorderBox11Props = ExtractPropTypes<typeof borderBox11Props>;
  25. declare const _default: import('vue').DefineComponent<{
  26. title: string;
  27. animate: boolean;
  28. color: string[];
  29. backgroundColor: string;
  30. titleWidth: number;
  31. }, {
  32. width: globalThis.Ref<number, number>;
  33. height: globalThis.Ref<number, number>;
  34. initWH: (resize?: boolean) => Promise<unknown>;
  35. filterId: globalThis.Ref<string, string>;
  36. mergedColor: globalThis.ComputedRef<string[]>;
  37. borderBox11: globalThis.Ref<null, null>;
  38. }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
  39. title: string;
  40. animate: boolean;
  41. color: string[];
  42. backgroundColor: string;
  43. titleWidth: number;
  44. }> & Readonly<{}>, {
  45. title: string;
  46. animate: boolean;
  47. color: string[];
  48. backgroundColor: string;
  49. titleWidth: number;
  50. }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
  51. export default _default;