Remove type directory

This commit is contained in:
RMidhunSuresh 2022-02-03 12:06:13 +05:30
parent e13040a49e
commit 7bacbec5e9
4 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@ limitations under the License.
import type {HomeServerApi} from "../net/HomeServerApi";
import {registrationStageFromType} from "./registrationStageFromType";
import type {BaseRegistrationStage} from "./stages/BaseRegistrationStage";
import type {AccountDetails, RegistrationFlow, RegistrationResponseMoreDataNeeded} from "./types/types";
import type {AccountDetails, RegistrationFlow, RegistrationResponseMoreDataNeeded} from "./types";
type FlowSelector = (flows: RegistrationFlow[]) => RegistrationFlow | void;

View file

@ -16,7 +16,7 @@ limitations under the License.
import type {BaseRegistrationStage} from "./stages/BaseRegistrationStage";
import type {HomeServerApi} from "../net/HomeServerApi";
import type {AccountDetails, RegistrationParams} from "./types/types";
import type {AccountDetails, RegistrationParams} from "./types";
import {DummyAuth} from "./stages/DummyAuth";
import {TermsAuth} from "./stages/TermsAuth";

View file

@ -15,7 +15,7 @@ limitations under the License.
*/
import type {HomeServerApi} from "../../net/HomeServerApi";
import type {AccountDetails, RegistrationResponse, AuthenticationData, RegistrationParams} from "../types/types";
import type {AccountDetails, RegistrationResponse, AuthenticationData, RegistrationParams} from "../types";
export abstract class BaseRegistrationStage {
protected _hsApi: HomeServerApi;