Files
WAI_Project_UNIX/uni_modules/cool-share/index.d.ts
2025-10-31 11:28:53 +08:00

11 lines
277 B
TypeScript

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