Skip to content

keepAlive

api.keepAlive()

Parameters

Return

Promise<KeepAliveResponse>

Types

ts
export type KeepAliveResponse = { config_vesion: number };

Examples

ts
api.keepAlive()
    .then(console.log)
    .catch(console.error);