interface.uts 185 B

123456789
  1. export type ShareWithSystemOptions = {
  2. type: string;
  3. title?: string;
  4. summary?: string;
  5. href?: string;
  6. imageUrl?: string;
  7. success?: () => void;
  8. fail?: (error: string) => void;
  9. };