custom-components.d.ts 407 B

1234567891011121314151617
  1. import React from "react";
  2. interface SlideDeleteProps {
  3. pid: string | number;
  4. pinned?: boolean;
  5. onAction?: (e: any) => void;
  6. children: React.ReactNode; // 建议用 React.ReactNode
  7. }
  8. declare global {
  9. namespace JSX {
  10. interface IntrinsicElements {
  11. "slide-delete": SlideDeleteProps;
  12. "slide-contact": SlideDeleteProps;
  13. // 你可以继续添加其它自定义组件
  14. }
  15. }
  16. }