mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
7 lines
121 B
TypeScript
7 lines
121 B
TypeScript
|
declare var global: NodeJS.Global;
|
||
|
|
||
|
(<any>global).requestAnimationFrame = (callback) => {
|
||
|
setTimeout(callback, 0);
|
||
|
};
|
||
|
|