Files
WAI_Project_UNIX/uni_modules/cool-share/index.d.ts
2025-10-30 19:28:09 +08:00

12 lines
299 B
TypeScript

declare module "@/uni_modules/cool-share" {
export function shareWithSystem(options: {
type: "text" | "image" | "file" | "link" | "video" | "audio";
title?: string;
summary?: string;
href?: string;
imageUrl?: string;
success?: () => void;
fail?: (error: string) => void;
}): void;
}