mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
9 lines
181 B
Plaintext
9 lines
181 B
Plaintext
// https://w3c.github.io/requestidlecallback/#dom-idledeadline
|
|
[Exposed=Window]
|
|
interface IdleDeadline {
|
|
|
|
double timeRemaining();
|
|
readonly attribute boolean didTimeout;
|
|
|
|
};
|