1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-04 17:43:39 +00:00

[PM-29607] Create @bitwarden/subscription (#17997)

* Create @bitwarden/subscription

* Fix changed import in tsconfig.base.json
This commit is contained in:
Alex Morask
2025-12-16 10:13:18 -06:00
committed by GitHub
parent b1591da1b2
commit a987494300
15 changed files with 123 additions and 0 deletions

View File

@@ -0,0 +1 @@
export type Placeholder = unknown;

View File

@@ -0,0 +1,8 @@
import * as lib from "./index";
describe("subscription", () => {
// This test will fail until something is exported from index.ts
it("should work", () => {
expect(lib).toBeDefined();
});
});