overwolf.extensions.registerInfo
Overwolf APIs / overwolf / overwolf / extensions / registerInfo
function registerInfo(
id: string,
eventsCallback: (info: object) => void,
callback: CallbackFunction<Result>,
): void;
Requests info updates for extension. Will also be called when the extension launches/closes.
Parameters
| Parameter | Type | Description |
|---|---|---|
id | string | The id of the extension to get updates for. |
eventsCallback | (info: object) => void | A callback to receive info updates. |
callback | CallbackFunction<Result> | The status of the request. |
Returns
void