From 2ac63e78cade3c7dd635f0cdf28349db39ed069d Mon Sep 17 00:00:00 2001 From: R Midhun Suresh Date: Fri, 4 Feb 2022 17:16:15 +0530 Subject: [PATCH] mark method as internal Co-authored-by: Bruno Windels --- src/matrix/registration/stages/BaseRegistrationStage.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/matrix/registration/stages/BaseRegistrationStage.ts b/src/matrix/registration/stages/BaseRegistrationStage.ts index 964cc75d..c9350fdb 100644 --- a/src/matrix/registration/stages/BaseRegistrationStage.ts +++ b/src/matrix/registration/stages/BaseRegistrationStage.ts @@ -40,6 +40,7 @@ export abstract class BaseRegistrationStage { * This method should return auth part that must be provided to * /register endpoint to successfully complete this stage */ + /** @internal */ abstract generateAuthenticationData(): AuthenticationData; setNextStage(stage: BaseRegistrationStage) {