mirror of
https://github.com/rhysd/Mstdn.git
synced 2025-01-21 20:52:11 +01:00
10 lines
239 B
TypeScript
10 lines
239 B
TypeScript
|
interface RequestIdleCallback {
|
||
|
didTimeout?: boolean;
|
||
|
timeRemaining?: () => number;
|
||
|
}
|
||
|
|
||
|
interface Window {
|
||
|
requestIdleCallback(cb: (deadline: RequestIdleCallback) => any): NodeJS.Timer;
|
||
|
cancelIdleCallback(id: NodeJS.Timer): void;
|
||
|
}
|