Fixed the type definition for Realm.Permissions.User (#2013)
The identity field was wrong, it should have been id instead
This commit is contained in:
parent
e2342e2721
commit
af46a2d86f
|
@ -591,7 +591,7 @@ declare namespace Realm.Permissions {
|
|||
|
||||
class User {
|
||||
static schema: ObjectSchema;
|
||||
identity: string;
|
||||
id: string;
|
||||
}
|
||||
|
||||
class Role {
|
||||
|
|
Loading…
Reference in New Issue