unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
13 lines • 684 B
TypeScript
import type { IUserSplashKey, IUserSplash, IUserSplashStore } from '../../lib/types/stores/user-splash-store.js';
export default class FakeUserSplashStore implements IUserSplashStore {
getAllUserSplashes(_userId: number): Promise<IUserSplash[]>;
getSplash(_userId: number, _splashId: string): Promise<IUserSplash>;
updateSplash(_splash: IUserSplash): Promise<IUserSplash>;
exists(_key: IUserSplashKey): Promise<boolean>;
get(_key: IUserSplashKey): Promise<IUserSplash>;
getAll(): Promise<IUserSplash[]>;
delete(_key: IUserSplashKey): Promise<void>;
deleteAll(): Promise<void>;
destroy(): void;
}
//# sourceMappingURL=fake-user-splash-store.d.ts.map