blob: cf19b7e9e7622b9729d0f952deeaf36140a91b70 [file] [log] [blame]
// https://wicg.github.io/web-share/
partial interface Navigator {
[SecureContext]
Promise<void> share(optional ShareData data);
};
dictionary ShareData {
USVString title;
USVString text;
USVString url;
};