mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
11 lines
291 B
JavaScript
11 lines
291 B
JavaScript
import { onAppReady } from "../api/ready.js";
|
|
import { ensurePropertyExists } from "../api/utils.js";
|
|
|
|
/**
|
|
* Dispatches the 'Ready' event to all enabled plugins.
|
|
*/
|
|
export default function() {
|
|
ensurePropertyExists(window, "TD_PLUGINS");
|
|
onAppReady(() => window.TD_PLUGINS.onReady());
|
|
};
|