11 lines
277 B
TypeScript
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;
|
|
}
|