mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-11 06:46:03 +00:00
Allow all log levels in Realm.Sync.setLogLevels()
This commit is contained in:
parent
7062b48063
commit
a84f1ed75d
2
lib/index.d.ts
vendored
2
lib/index.d.ts
vendored
@ -314,7 +314,7 @@ declare namespace Realm.Sync {
|
||||
function addListener(serverURL: string, adminUser: Realm.Sync.User, regex: string, name: string, changeCallback: (changeEvent: ChangeEvent) => void): void;
|
||||
function removeAllListeners(name?: string): void;
|
||||
function removeListener(regex: string, name: string, changeCallback: (changeEvent: ChangeEvent) => void): void;
|
||||
function setLogLevel(logLevel: 'error' | 'info' | 'debug'): void;
|
||||
function setLogLevel(logLevel: 'all' | 'trace' | 'debug' | 'detail' | 'info' | 'warn' | 'error' | 'fatal' | 'off'): void;
|
||||
function setAccessToken(accessToken: string): void;
|
||||
|
||||
type Instruction = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user