1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

Use NPM workspace (#2874)

This commit is contained in:
Oscar Hinton
2022-06-14 17:10:53 +02:00
committed by GitHub
parent 6806a1b244
commit bc639688e8
643 changed files with 4462 additions and 4350 deletions

View File

@@ -1,4 +1,4 @@
import { TwoFactorProviderType } from "jslib-common/enums/twoFactorProviderType";
import { TwoFactorProviderType } from "../../../enums/twoFactorProviderType";
export class TokenRequestTwoFactor {
constructor(

View File

@@ -1,4 +1,4 @@
import { OrganizationConnectionType } from "jslib-common/enums/organizationConnectionType";
import { OrganizationConnectionType } from "../../enums/organizationConnectionType";
import { BillingSyncConfigRequest } from "./billingSyncConfigRequest";

View File

@@ -1,5 +1,4 @@
import { OrganizationConnectionType } from "jslib-common/enums/organizationConnectionType";
import { OrganizationConnectionType } from "../../enums/organizationConnectionType";
import { BillingSyncConfigApi } from "../api/billingSyncConfigApi";
import { BaseResponse } from "./baseResponse";