1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-03-04 00:18:40 +01:00
unleash.unleash/src/lib/features/traffic-data-usage/fake-traffic-data-usage-store.ts
Christopher Kolstad 53354224fc
chore: Bump biome and configure husky (#6589)
Upgrades biome to 1.6.1, and updates husky pre-commit hook.

Most changes here are making type imports explicit.
2024-03-18 13:58:05 +01:00

30 lines
1017 B
TypeScript

import type {
IStatTrafficUsageKey,
IStatTrafficUsage,
} from './traffic-data-usage-store-type';
import type { ITrafficDataUsageStore } from '../../types';
export class FakeTrafficDataUsageStore implements ITrafficDataUsageStore {
get(key: IStatTrafficUsageKey): Promise<IStatTrafficUsage> {
throw new Error('Method not implemented.');
}
getAll(query?: Object | undefined): Promise<IStatTrafficUsage[]> {
throw new Error('Method not implemented.');
}
exists(key: IStatTrafficUsageKey): Promise<boolean> {
throw new Error('Method not implemented.');
}
delete(key: IStatTrafficUsageKey): Promise<void> {
throw new Error('Method not implemented.');
}
deleteAll(): Promise<void> {
throw new Error('Method not implemented.');
}
destroy(): void {
throw new Error('Method not implemented.');
}
upsert(trafficDataUsage: IStatTrafficUsage): Promise<void> {
throw new Error('Method not implemented.');
}
}