Skip to main content

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

ParameterTypeDescription
idstringThe id of the extension to get updates for.
eventsCallback(info: object) => voidA callback to receive info updates.
callbackCallbackFunction<Result>The status of the request.

Returns

void