mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-17 13:46:47 +02:00
10 lines
236 B
TypeScript
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 {}
|
|
}
|