index.d.ts 277 B

12345678910
  1. declare module "@/uni_modules/cool-share" {
  2. export function shareWithSystem(options: {
  3. type: "text" | "image" | "file" | "link" | "video" | "audio";
  4. title?: string;
  5. summary?: string;
  6. url?: string;
  7. success?: () => void;
  8. fail?: (error: string) => void;
  9. }): void;
  10. }