1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-17 13:46:47 +02:00
unleash.unleash/src/lib/features/user-subscriptions/fake-user-unsubscribe-store.ts
Tymoteusz Czech 2bd2d74f83
feat: User subscriptions store and service (#8648)
Co-authored-by: kwasniew <kwasniewski.mateusz@gmail.com>
2024-11-05 10:14:47 +01:00

10 lines
236 B
TypeScript

import type { IUserUnsubscribeStore } from './user-unsubscribe-store-type';
export class FakeUserUnsubscribeStore implements IUserUnsubscribeStore {
async insert() {}
async delete(): Promise<void> {}
destroy(): void {}
}