Files
ladybird/Libraries/LibWeb/HTML/NavigatorBeacon.idl
2024-11-10 12:50:45 +01:00

8 lines
250 B
Plaintext

#import <Fetch/BodyInit.idl>
// https://w3c.github.io/beacon/#sendbeacon-method
// FIXME: This is a partial interface not an interface mixin
interface mixin NavigatorBeacon {
boolean sendBeacon(USVString url, optional BodyInit? data = null);
};