diff --git a/lib/index.d.ts b/lib/index.d.ts index dcdb1106..a16ab273 100644 --- a/lib/index.d.ts +++ b/lib/index.d.ts @@ -318,7 +318,7 @@ declare namespace Realm.Sync { static requestPasswordReset(server: string, email: string): Promise; static completePasswordReset(server:string, reset_token:string, new_password:string): Promise; - + static requestEmailConfirmation(server:string, email:string): Promise; static confirmEmail(server:string, confirmation_token:string): Promise; @@ -732,6 +732,14 @@ declare class Realm { */ compact(): boolean; + /** + * Computes the aggregated size of all objects and their history in the Realm. + * + * Note that this will traverse the Realm and might be expensive for large Realms. + * @returns {number} the computed size in bytes. + */ + computeSize(): number; + /** * Write a copy to destination path * @param path destination path