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:
Apperside 2018-09-17 09:28:01 +02:00 committed by Kenneth Geisshirt
parent e2342e2721
commit af46a2d86f
1 changed files with 1 additions and 1 deletions

2
lib/index.d.ts vendored
View File

@ -591,7 +591,7 @@ declare namespace Realm.Permissions {
class User {
static schema: ObjectSchema;
identity: string;
id: string;
}
class Role {