Files
jindengchen-ai-report/cool-unix/uni_modules/cool-share/index.d.ts

11 lines
277 B
TypeScript
Raw Normal View History

2025-11-13 10:36:23 +08:00
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;
}