10 lines
185 B
Plaintext
10 lines
185 B
Plaintext
export type ShareWithSystemOptions = {
|
|
type: string;
|
|
title?: string;
|
|
summary?: string;
|
|
href?: string;
|
|
imageUrl?: string;
|
|
success?: () => void;
|
|
fail?: (error: string) => void;
|
|
};
|